No functionality change. Fix up some whitespace and switch out "" for '' when

printing a single character.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2011-03-25 06:04:26 +00:00
parent eb5067e0d9
commit d56acb36ab

View File

@ -375,7 +375,7 @@ namespace {
dbgs() << str << " intervals:\n";
for (; i != e; ++i) {
dbgs() << "\t" << *i->first << " -> ";
dbgs() << '\t' << *i->first << " -> ";
unsigned reg = i->first->reg;
if (TargetRegisterInfo::isVirtualRegister(reg))