Fix clif ir text format emission

This commit is contained in:
bjorn3 2024-08-11 20:21:39 +00:00
parent 918e11d14d
commit b4e46de5f3

View File

@ -505,7 +505,10 @@ enum CallTarget {
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]
)),
);
}