Skip to content

Commit 388646a

Browse files
Hopefully fix UB
1 parent 6081b49 commit 388646a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,10 @@ extern "C" LLVMValueRef LLVMRustBuildCall(LLVMBuilderRef B, LLVMTypeRef Ty, LLVM
15301530
FunctionType *FTy = unwrap<FunctionType>(Ty);
15311531
return wrap(unwrap(B)->CreateCall(
15321532
FTy, Callee, ArrayRef<Value*>(unwrap(Args), NumArgs),
1533-
ArrayRef<OperandBundleDef>(*OpBundles, NumOpBundles)));
1533+
NumOpBundles == 0 ?
1534+
ArrayRef<OperandBundleDef>() :
1535+
// FIXME: This signature is just wrong, no idea how this ever worked.
1536+
ArrayRef<OperandBundleDef>(*OpBundles, NumOpBundles)));
15341537
}
15351538

15361539
extern "C" LLVMValueRef LLVMRustGetInstrProfIncrementIntrinsic(LLVMModuleRef M) {

0 commit comments

Comments
 (0)