authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-12 00:50:17-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-12 00:50:17-07:00
logc903dad915cd21697692b00c69c8424438d0da15
treef31dbc00abf4c400a7fcbf83ba84977f2a3c10f4
parent8cf40f3445b6548836be3db2a8ef5317af6545ac

fix zig_llvm.h not complying with C


1 files changed, 2 insertions(+), 2 deletions(-)

src/zig_llvm.h+2-2
...@@ -59,8 +59,8 @@ enum ZigLLVMABIType {...@@ -59,8 +59,8 @@ enum ZigLLVMABIType {
59};59};
6060
61ZIG_EXTERN_C LLVMTargetMachineRef ZigLLVMCreateTargetMachine(LLVMTargetRef T, const char *Triple,61ZIG_EXTERN_C LLVMTargetMachineRef ZigLLVMCreateTargetMachine(LLVMTargetRef T, const char *Triple,
62 const char *CPU, const char *Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,62 const char *CPU, const char *Features, enum LLVMCodeGenOptLevel Level, enum LLVMRelocMode Reloc,
63 LLVMCodeModel CodeModel, bool function_sections, ZigLLVMABIType float_abi, const char *abi_name);63 enum LLVMCodeModel CodeModel, bool function_sections, enum ZigLLVMABIType float_abi, const char *abi_name);
6464
65ZIG_EXTERN_C LLVMTypeRef ZigLLVMTokenTypeInContext(LLVMContextRef context_ref);65ZIG_EXTERN_C LLVMTypeRef ZigLLVMTokenTypeInContext(LLVMContextRef context_ref);
6666