We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0007d commit 24d5856Copy full SHA for 24d5856
compiler/rustc_codegen_llvm/src/allocator.rs
@@ -134,7 +134,8 @@ fn create_wrapper_function(
134
llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
135
}
136
if tcx.sess.must_emit_unwind_tables() {
137
- let uwtable = attributes::uwtable_attr(llcx, tcx.sess.opts.unstable_opts.use_sync_unwind);
+ let uwtable =
138
+ attributes::uwtable_attr(llcx, tcx.sess.opts.unstable_opts.use_sync_unwind);
139
attributes::apply_to_llfn(llfn, llvm::AttributePlace::Function, &[uwtable]);
140
141
0 commit comments