diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 091cda85ca7..e33d9f400ab 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -750,7 +750,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) { // if (RetTy && MTy && !MTy->isVarArg() && (!isa<PointerType>(RetTy) || - !isa<FunctionType>(cast<PointerType>(RetTy)))) { + !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) { Out << " "; printType(RetTy); writeOperand(Operand, false); } else {