mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
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:
parent
8732577230
commit
e04853ca78
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user