diff options
author | Torok Edwin <edwintorok@gmail.com> | 2011-10-06 12:13:32 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2011-10-06 12:13:32 +0000 |
commit | 1db48c00552fba0387be8784c471aed1b7b50be9 (patch) | |
tree | 79c3e82ea312b6ff6c3efcb744847f3d9a904c50 | |
parent | 1cd9aded851697cea37652f56898ce37aee4d606 (diff) | |
download | bcm5719-llvm-1db48c00552fba0387be8784c471aed1b7b50be9.tar.gz bcm5719-llvm-1db48c00552fba0387be8784c471aed1b7b50be9.zip |
Add uwtable, returnstwice and nonlazybind to the C bindings also.
llvm-svn: 141289
-rw-r--r-- | llvm/include/llvm-c/Core.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 4d14af1e06b..2bb7323cdee 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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 { |