diff options
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 9ae3b9a289..e06bf50a9d 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1188,10 +1188,6 @@ void AssemblyWriter::printInstruction(const Instruction &I) { if (Operand) writeOperand(Operand, true); // Work with broken code Out << ", "; printType(I.getType()); - } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) { - if (Operand) writeOperand(Operand, true); // Work with broken code - Out << ", "; - printType(VAN->getArgType()); } else if (Operand) { // Print the normal way... // PrintAllTypes - Instructions who have operands of all the same type |