Add uwtable, returnstwice and nonlazybind to the C bindings also.
authorTorok Edwin <edwintorok@gmail.com>
Thu, 6 Oct 2011 12:13:32 +0000 (12:13 +0000)
committerTorok Edwin <edwintorok@gmail.com>
Thu, 6 Oct 2011 12:13:32 +0000 (12:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141289 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm-c/Core.h

index 4d14af1e06bd0eb13bfe57daf277a7841c3daf9d..2bb7323cdeee393c40f826ee41b41f7f751c291c 100644 (file)
@@ -115,7 +115,10 @@ typedef enum {
     LLVMNoImplicitFloatAttribute = 1<<23,
     LLVMNakedAttribute      = 1<<24,
     LLVMInlineHintAttribute = 1<<25,
-    LLVMStackAlignment = 7<<26
+    LLVMStackAlignment = 7<<26,
+    LLVMReturnsTwice = 1 << 29,
+    LLVMUWTable = 1 << 30,
+    LLVMNonLazyBind = 1 << 31
 } LLVMAttribute;
 
 typedef enum {