Skip to content

Commit fa53181

Browse files
cg_clif: Tweak formatting of global comments
Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com>
1 parent 59e9eb9 commit fa53181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_codegen_cranelift/src/abi/comments.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ pub(super) fn add_local_place_comments<'tcx>(
8484
let (kind, extra) = place.debug_comment();
8585

8686
fx.add_global_comment(format!(
87-
"{:<5} {:5} {:30} {:4}b {}, {}{}",
87+
"{:<5} {:5} {:30} {:4}b {}{}{}",
8888
kind,
8989
format!("{:?}", local),
9090
format!("{:?}", ty),
9191
size.bytes(),
9292
align.abi.bytes(),
93-
if extra.is_empty() { "" } else { " " },
93+
if extra.is_empty() { "" } else { " " },
9494
extra,
9595
));
9696
}

0 commit comments

Comments
 (0)