Browse Source

fix compat with earlier llvm versions

Laytan Laats 5 months ago
parent
commit
2d00f8d69d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/llvm_abi.cpp

+ 1 - 1
src/llvm_abi.cpp

@@ -1246,7 +1246,7 @@ namespace lbAbiArm64 {
 				cast_type = LLVMIntTypeInContext(c, cast(unsigned)(size*8));
 			} else {
 				LLVMTypeRef llvm_i64 = LLVMIntTypeInContext(c, 64);
-				cast_type = LLVMArrayType2(llvm_i64, 2);
+				cast_type = llvm_array_type(llvm_i64, 2);
 			}
 			return lb_arg_type_direct(return_type, cast_type, nullptr, nullptr);
 		}