X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=extra%2Fllvm%2Fcore%2Fcore.factor;h=1fafe05190a8280310ccee6907a4ec054a2dace1;hp=4b20655ed42758689fa4e772a5fefe69b2391f49;hb=943596575ad294c074dfa381b70af74dba5992b1;hpb=e738c7206c32bd9b76f3cee31e950835e1b1ee24 diff --git a/extra/llvm/core/core.factor b/extra/llvm/core/core.factor index 4b20655ed4..1fafe05190 100644 --- a/extra/llvm/core/core.factor +++ b/extra/llvm/core/core.factor @@ -29,17 +29,17 @@ TYPEDEF: uint unsigned TYPEDEF: unsigned enum ENUM: LLVMAttribute - { LLVMZExtAttribute BIN: 1 } - { LLVMSExtAttribute BIN: 10 } - { LLVMNoReturnAttribute BIN: 100 } - { LLVMInRegAttribute BIN: 1000 } - { LLVMStructRetAttribute BIN: 10000 } - { LLVMNoUnwindAttribute BIN: 100000 } - { LLVMNoAliasAttribute BIN: 1000000 } - { LLVMByValAttribute BIN: 10000000 } - { LLVMNestAttribute BIN: 100000000 } - { LLVMReadNoneAttribute BIN: 1000000000 } - { LLVMReadOnlyAttribute BIN: 10000000000 } ; + { LLVMZExtAttribute 0b1 } + { LLVMSExtAttribute 0b10 } + { LLVMNoReturnAttribute 0b100 } + { LLVMInRegAttribute 0b1000 } + { LLVMStructRetAttribute 0b10000 } + { LLVMNoUnwindAttribute 0b100000 } + { LLVMNoAliasAttribute 0b1000000 } + { LLVMByValAttribute 0b10000000 } + { LLVMNestAttribute 0b100000000 } + { LLVMReadNoneAttribute 0b1000000000 } + { LLVMReadOnlyAttribute 0b10000000000 } ; ENUM: LLVMTypeKind LLVMVoidTypeKind