From f80c58a7d604b8ff3d3b84d396d162f9005472f4 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 22 Oct 2001 13:44:53 +0000 Subject: [PATCH] Split JMPL into JMPLCALL and JMPLRET. llvm-svn: 943 --- lib/Target/Sparc/EmitAssembly.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Target/Sparc/EmitAssembly.cpp b/lib/Target/Sparc/EmitAssembly.cpp index 1280d5ac6de..aadc790210c 100644 --- a/lib/Target/Sparc/EmitAssembly.cpp +++ b/lib/Target/Sparc/EmitAssembly.cpp @@ -164,7 +164,8 @@ void SparcAsmPrinter::emitMachineInst(const MachineInstr *MI) { Out << "\t" << TargetInstrDescriptors[Opcode].opCodeString << "\t"; switch (Opcode) { // Some opcodes have special syntax... - case JMPL: + case JMPLCALL: + case JMPLRET: assert(MI->getNumOperands() == 3 && "Unexpected JMPL instr!"); printOperand(MI->getOperand(0)); Out << "+";