Skip to content

Commit 5a0c1b3

Browse files
committed
Print BasicBlock names in lowercase.
1 parent 661976c commit 5a0c1b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/mir/repr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ impl BasicBlock {
184184

185185
impl Debug for BasicBlock {
186186
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
187-
write!(fmt, "BB({})", self.0)
187+
write!(fmt, "bb{}", self.0)
188188
}
189189
}
190190

0 commit comments

Comments
 (0)