aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-17 18:55:30 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-17 18:55:30 +0000
commite50d77492187ab14d0c8505af1fe73e3b41044fc (patch)
tree379c52ae8b57291483778537c1a0495abcbd9ace
parent1b18b3a67e0ae1d39c5de9d49b65ad6cfd6686f8 (diff)
downloadexternal_llvm-e50d77492187ab14d0c8505af1fe73e3b41044fc.zip
external_llvm-e50d77492187ab14d0c8505af1fe73e3b41044fc.tar.gz
external_llvm-e50d77492187ab14d0c8505af1fe73e3b41044fc.tar.bz2
Add missed attributes to C bindings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76214 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm-c/Core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index ee8058e..26b3d58 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -99,6 +99,14 @@ typedef enum {
LLVMNestAttribute = 1<<8,
LLVMReadNoneAttribute = 1<<9,
LLVMReadOnlyAttribute = 1<<10,
+ LLVMNoInlineAttribute = 1<<11;
+ LLVMAlwaysInlineAttribute = 1<<12;
+ LLVMOptimizeForSizeAttribute = 1<<13;
+ LLVMStackProtectAttribute = 1<<14;
+ LLVMStackProtectReqAttribute = 1<<15;
+ LLVMNoCaptureAttribute = 1<<21;
+ LLVMNoRedZoneAttribute = 1<<22;
+ LLVMNoImplicitFloatAttribute = 1<<23;
LLVMNakedAttribute = 1<<24
} LLVMAttribute;