From: Jim Grosbach Date: Mon, 25 Jan 2010 23:50:13 +0000 (+0000) Subject: Minor jump table cleanup. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1f9b48ad87a5dab4a6c3805c369414c831e4451d;p=oota-llvm.git Minor jump table cleanup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94475 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 1b2b8abc577..63aa7ce7eac 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp @@ -950,8 +950,8 @@ void ARMAsmPrinter::printJTBlockOperand(const MachineInstr *MI, int OpNum) { if (UseSet && isNew) { O << MAI->getSetDirective() << ' ' - << *GetARMSetPICJumpTableLabel2(JTI, MO2.getImm(), MBB) << '-' - << *JTISymbol << '\n'; + << *GetARMSetPICJumpTableLabel2(JTI, MO2.getImm(), MBB) << ',' + << *GetMBBSymbol(MBB->getNumber()) << '-' << *JTISymbol << '\n'; } O << JTEntryDirective << ' ';