diff options
| author | bors <bors@rust-lang.org> | 2024-03-25 16:34:41 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-25 16:34:41 +0000 |
| commit | cf1eb93a02349d31f96ab2737b6f15cf6e6df534 (patch) | |
| tree | 8c1145dcdf2031d5872f17329803a6c60b42c31a /compiler/rustc_codegen_llvm/src/asm.rs | |
| parent | c4611708bd510a17d36d385e9bb70b19283de051 (diff) | |
| parent | 0d4ef69d66ed32f23fc1006fdd26911e42eba460 (diff) | |
| download | rust-cf1eb93a02349d31f96ab2737b6f15cf6e6df534.tar.gz rust-cf1eb93a02349d31f96ab2737b6f15cf6e6df534.zip | |
Auto merge of #3414 - RalfJung:rustup, r=RalfJung
Rustup Fixes https://github.com/rust-lang/miri/issues/3404
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/asm.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/asm.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_llvm/src/asm.rs b/compiler/rustc_codegen_llvm/src/asm.rs index 74539d4d495..500904ce188 100644 --- a/compiler/rustc_codegen_llvm/src/asm.rs +++ b/compiler/rustc_codegen_llvm/src/asm.rs @@ -466,11 +466,11 @@ pub(crate) fn inline_asm_call<'ll>( let call = if !labels.is_empty() { assert!(catch_funclet.is_none()); - bx.callbr(fty, None, None, v, inputs, dest.unwrap(), labels, None) + bx.callbr(fty, None, None, v, inputs, dest.unwrap(), labels, None, None) } else if let Some((catch, funclet)) = catch_funclet { - bx.invoke(fty, None, None, v, inputs, dest.unwrap(), catch, funclet) + bx.invoke(fty, None, None, v, inputs, dest.unwrap(), catch, funclet, None) } else { - bx.call(fty, None, None, v, inputs, None) + bx.call(fty, None, None, v, inputs, None, None) }; // Store mark in a metadata node so we can map LLVM errors |
