Skip to content

Commit b4e46de

Browse files
committed
Fix clif ir text format emission
1 parent 918e11d commit b4e46de

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/abi/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,10 @@ pub(crate) fn codegen_terminator_call<'tcx>(
505505
let nop_inst = fx.bcx.ins().nop();
506506
fx.add_comment(
507507
nop_inst,
508-
format!("virtual call; self arg pass mode: {:?}", fn_abi.args[0]),
508+
with_no_trimmed_paths!(format!(
509+
"virtual call; self arg pass mode: {:?}",
510+
fn_abi.args[0]
511+
)),
509512
);
510513
}
511514

0 commit comments

Comments
 (0)