Always print at least one space before adding a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79242 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-08-17 15:27:30 +00:00
parent 8732577230
commit e04853ca78

View File

@ -1690,11 +1690,11 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
}
if (BB->getParent() == 0) {
Out.PadToColumn(50);
Out.PadToColumn(50, 1);
Out << "; Error: Block without parent!";
} else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
// Output predecessors for the block...
Out.PadToColumn(50);
Out.PadToColumn(50, 1);
Out << ";";
pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
@ -1729,7 +1729,7 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
///
void AssemblyWriter::printInfoComment(const Value &V) {
if (V.getType() != Type::getVoidTy(V.getContext())) {
Out.PadToColumn(50);
Out.PadToColumn(50, 1);
Out << "; <";
TypePrinter.print(V.getType(), Out);
Out << "> [#uses=" << V.getNumUses() << ']'; // Output # uses