Skip to content

Commit

Permalink
Fix clif ir text format emission
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Aug 11, 2024
1 parent 918e11d commit b4e46de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/abi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,10 @@ pub(crate) fn codegen_terminator_call<'tcx>(
let nop_inst = fx.bcx.ins().nop();
fx.add_comment(
nop_inst,
format!("virtual call; self arg pass mode: {:?}", fn_abi.args[0]),
with_no_trimmed_paths!(format!(
"virtual call; self arg pass mode: {:?}",
fn_abi.args[0]
)),
);
}

Expand Down

0 comments on commit b4e46de

Please sign in to comment.