We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e9eb9 commit fa53181Copy full SHA for fa53181
compiler/rustc_codegen_cranelift/src/abi/comments.rs
@@ -84,13 +84,13 @@ pub(super) fn add_local_place_comments<'tcx>(
84
let (kind, extra) = place.debug_comment();
85
86
fx.add_global_comment(format!(
87
- "{:<5} {:5} {:30} {:4}b {}, {}{}",
+ "{:<5} {:5} {:30} {:4}b {}{}{}",
88
kind,
89
format!("{:?}", local),
90
format!("{:?}", ty),
91
size.bytes(),
92
align.abi.bytes(),
93
- if extra.is_empty() { "" } else { " " },
+ if extra.is_empty() { "" } else { " " },
94
extra,
95
));
96
}
0 commit comments