Print BasicBlock names in lowercase.

This commit is contained in:
Scott Olson 2015-12-29 20:10:39 -06:00
parent 661976cbd1
commit 5a0c1b3a88

View File

@ -184,7 +184,7 @@ impl BasicBlock {
impl Debug for BasicBlock {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
write!(fmt, "BB({})", self.0)
write!(fmt, "bb{}", self.0)
}
}