diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index f92fe25fd25..2c36ed98cb7 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -912,15 +912,15 @@ void AssemblyWriter::printInstruction(const Instruction &I) { writeOperand(AI->getArraySize(), true); } } else if (isa(I)) { - writeOperand(Operand, true); + if (Operand) writeOperand(Operand, true); // Work with broken code Out << " to "; printType(I.getType()); } else if (isa(I)) { - writeOperand(Operand, true); + if (Operand) writeOperand(Operand, true); // Work with broken code Out << ", "; printType(I.getType()); } else if (const VANextInst *VAN = dyn_cast(&I)) { - writeOperand(Operand, true); + if (Operand) writeOperand(Operand, true); // Work with broken code Out << ", "; printType(VAN->getArgType()); } else if (Operand) { // Print the normal way...