Fix a missing space after the return type in invoke statements.

This fixes PR2894.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57589 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-10-15 18:02:08 +00:00
parent a870039277
commit 2b6c3d9ff1

View File

@ -1621,16 +1621,16 @@ void AssemblyWriter::printInstruction(const Instruction &I) {
// only do this if the first argument is a pointer to a nonvararg function,
// and if the return type is not a pointer to a function.
//
Out << ' ';
if (!FTy->isVarArg() &&
(!isa<PointerType>(RetTy) ||
!isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Out << ' '; printType(RetTy);
printType(RetTy);
Out << ' ';
writeOperand(Operand, false);
} else {
Out << ' ';
writeOperand(Operand, true);
}
Out << '(';
for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
if (op > 3)