Skip to content

Commit b597848

Browse files
committed
Fix arg header comments
1 parent a6903b1 commit b597848

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/abi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ fn add_arg_comment<'a, 'tcx: 'a>(
341341
};
342342
let pass_mode = format!("{:?}", pass_mode);
343343
fx.add_global_comment(format!(
344-
"{msg:5} {local:>3}{local_field:<5} {params:10} {pass_mode:20} {ssa:10} {ty:?}",
344+
"{msg:5} {local:>3}{local_field:<5} {params:10} {pass_mode:36} {ssa:10} {ty:?}",
345345
msg = msg,
346346
local = format!("{:?}", local),
347347
local_field = local_field,
@@ -355,7 +355,7 @@ fn add_arg_comment<'a, 'tcx: 'a>(
355355
#[cfg(debug_assertions)]
356356
fn add_local_header_comment(fx: &mut FunctionCx<impl Backend>) {
357357
fx.add_global_comment(format!(
358-
"msg loc.idx param pass mode ssa flags ty"
358+
"msg loc.idx param pass mode ssa flags ty"
359359
));
360360
}
361361

0 commit comments

Comments
 (0)