AsmWriter: Only print one space after the load type

Before: %x = load i32,  i32* %i
After:  %x = load i32, i32* %i

Purely cosmetic, so no new test case.

llvm-svn: 230966
This commit is contained in:
Benjamin Kramer 2015-03-02 15:24:41 +00:00
parent cc34ba687b
commit 257ed69291
1 changed files with 1 additions and 1 deletions

View File

@ -2906,7 +2906,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) {
} else if (const auto *LI = dyn_cast<LoadInst>(&I)) {
Out << ' ';
TypePrinter.print(LI->getType(), Out);
Out << ", ";
Out << ',';
}
// PrintAllTypes - Instructions who have operands of all the same type