From 0cb896a8f80cc988128b59103e64957c5e2ea08a Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Fri, 17 Jul 2009 18:55:30 +0000 Subject: Add missed attributes to C bindings git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76214 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/Core.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/llvm-c') diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index ee8058e8cc..26b3d5881b 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; -- cgit v1.2.3