diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-15 02:57:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-15 02:57:38 +0000 |
commit | 4459c4250d41d7ca428b0363f1acb805a7e8f8f4 (patch) | |
tree | c90bce0f24a4dcddb884e9c5e76226a4b9162d66 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 3b0f5e4d617b4a03e0117629e19ec83b65860a66 (diff) | |
download | bcm5719-llvm-4459c4250d41d7ca428b0363f1acb805a7e8f8f4.tar.gz bcm5719-llvm-4459c4250d41d7ca428b0363f1acb805a7e8f8f4.zip |
Adjust whitespace in debug messages to be more consistent
with other debug messages.
llvm-svn: 57543
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 1ba4be8478c..3229f0721b0 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -400,7 +400,7 @@ void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{ for (unsigned i = 0, e = Objects.size(); i != e; ++i) { const StackObject &SO = Objects[i]; - OS << " <fi #" << (int)(i-NumFixedObjects) << ">: "; + OS << " <fi#" << (int)(i-NumFixedObjects) << ">: "; if (SO.Size == ~0ULL) { OS << "dead\n"; continue; @@ -458,7 +458,7 @@ void MachineJumpTableInfo::print(std::ostream &OS) const { // FIXME: this is lame, maybe we could print out the MBB numbers or something // like {1, 2, 4, 5, 3, 0} for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { - OS << " <jt #" << i << "> has " << JumpTables[i].MBBs.size() + OS << " <jt#" << i << "> has " << JumpTables[i].MBBs.size() << " entries\n"; } } @@ -536,7 +536,7 @@ unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V, void MachineConstantPool::print(raw_ostream &OS) const { for (unsigned i = 0, e = Constants.size(); i != e; ++i) { - OS << " <cp #" << i << "> is"; + OS << " <cp#" << i << "> is"; if (Constants[i].isMachineConstantPoolEntry()) Constants[i].Val.MachineCPVal->print(OS); else |