diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-17 18:55:30 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-17 18:55:30 +0000 |
commit | 08c08870f939fa6d01fb9bf1144f3e8794ac2027 (patch) | |
tree | adc72dae30e5a83e1d4e9929e9a7ea1d9b9aa8cc /llvm/include/llvm-c/Core.h | |
parent | bdffb1a3333f0c8dcccde14091f7551745435222 (diff) | |
download | bcm5719-llvm-08c08870f939fa6d01fb9bf1144f3e8794ac2027.tar.gz bcm5719-llvm-08c08870f939fa6d01fb9bf1144f3e8794ac2027.zip |
Add missed attributes to C bindings
llvm-svn: 76214
Diffstat (limited to 'llvm/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index ee8058e8cc5..26b3d5881bc 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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; |