mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
Print BasicBlock names in lowercase.
This commit is contained in:
parent
661976cbd1
commit
5a0c1b3a88
@ -184,7 +184,7 @@ impl BasicBlock {
|
|||||||
|
|
||||||
impl Debug for BasicBlock {
|
impl Debug for BasicBlock {
|
||||||
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
|
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
|
||||||
write!(fmt, "BB({})", self.0)
|
write!(fmt, "bb{}", self.0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user