From d0cc3f31c03f9f634d2b0974956dc1d11f014435 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 17 Aug 2009 15:27:30 +0000 Subject: [PATCH] Always print at least one space before adding a comment. llvm-svn: 79242 --- llvm/lib/VMCore/AsmWriter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 68a45221acac..82358e9b89ab 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -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