about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/intrinsic.rs
diff options
context:
space:
mode:
authorcynecx <me@cynecx.net>2021-09-04 19:25:09 +0200
committercynecx <me@cynecx.net>2021-12-03 23:51:49 +0100
commit91021de1f67de546b7ef41e03fc787f03ecf2239 (patch)
tree2e809500921ea4bd58327c054b6965579cd74a81 /compiler/rustc_codegen_llvm/src/intrinsic.rs
parent491dd1f387e4f0b167e35560a97efc9949304640 (diff)
downloadrust-91021de1f67de546b7ef41e03fc787f03ecf2239.tar.gz
rust-91021de1f67de546b7ef41e03fc787f03ecf2239.zip
LLVM codgen support for unwinding inline assembly
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/intrinsic.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/intrinsic.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/intrinsic.rs b/compiler/rustc_codegen_llvm/src/intrinsic.rs
index a7e34b08059..5e7d7552daf 100644
--- a/compiler/rustc_codegen_llvm/src/intrinsic.rs
+++ b/compiler/rustc_codegen_llvm/src/intrinsic.rs
@@ -350,6 +350,8 @@ impl IntrinsicCallMethods<'tcx> for Builder<'a, 'll, 'tcx> {
                     false,
                     ast::LlvmAsmDialect::Att,
                     &[span],
+                    false,
+                    None,
                 )
                 .unwrap_or_else(|| bug!("failed to generate inline asm call for `black_box`"));