Tidy up. Space before ':' in range-based for loops.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205585 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach
2014-04-03 23:43:26 +00:00
parent e1703660c4
commit 91ba0a9f61
5 changed files with 9 additions and 9 deletions

View File

@@ -120,7 +120,7 @@ void ARM64BranchRelaxation::verify() {
/// print block size and offset information - debugging
void ARM64BranchRelaxation::dumpBBs() {
for (auto &MBB: *MF) {
for (auto &MBB : *MF) {
const BasicBlockInfo &BBI = BlockInfo[MBB.getNumber()];
dbgs() << format("BB#%u\toffset=%08x\t", MBB.getNumber(), BBI.Offset)
<< format("size=%#x\n", BBI.Size);