mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-05 12:31:33 +00:00
Correct parameter attributes encoding for C bindings.
Patch by Anders Johnsen! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50375 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9ef7425a4d
commit
1fcfc3b6b2
@ -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