mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
Correct parameter attributes encoding for C bindings.
Patch by Anders Johnsen! llvm-svn: 50375
This commit is contained in:
parent
ce2ed94866
commit
a2edd9607f
@ -86,10 +86,10 @@ typedef enum {
|
||||
LLVMZExtParamAttr = 1<<0,
|
||||
LLVMSExtParamAttr = 1<<1,
|
||||
LLVMNoReturnParamAttr = 1<<2,
|
||||
LLVMNoUnwindParamAttr = 1<<3,
|
||||
LLVMInRegParamAttr = 1<<4,
|
||||
LLVMNoAliasParamAttr = 1<<5,
|
||||
LLVMStructRetParamAttr = 1<<6,
|
||||
LLVMInRegParamAttr = 1<<3,
|
||||
LLVMStructRetParamAttr = 1<<4,
|
||||
LLVMNoUnwindParamAttr = 1<<5,
|
||||
LLVMNoAliasParamAttr = 1<<6,
|
||||
LLVMByValParamAttr = 1<<7,
|
||||
LLVMNestParamAttr = 1<<8,
|
||||
LLVMReadNoneParamAttr = 1<<9,
|
||||
|
Loading…
Reference in New Issue
Block a user