summaryrefslogtreecommitdiff
path: root/include/llvm-c/Core.h
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2011-10-06 12:13:32 +0000
committerTorok Edwin <edwintorok@gmail.com>2011-10-06 12:13:32 +0000
commit6831b7c645c766a233ff779c26357d1add578c5d (patch)
tree9ef7cb3599a17e69b8634b1fd8505fb0aa78a195 /include/llvm-c/Core.h
parentff12c99d131789ccb9e8739963f4d8e0e95667d4 (diff)
downloadllvm-6831b7c645c766a233ff779c26357d1add578c5d.tar.gz
llvm-6831b7c645c766a233ff779c26357d1add578c5d.tar.bz2
llvm-6831b7c645c766a233ff779c26357d1add578c5d.tar.xz
Add uwtable, returnstwice and nonlazybind to the C bindings also.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Core.h')
-rw-r--r--include/llvm-c/Core.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 4d14af1e06..2bb7323cde 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -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 {