From: Johnny Chen Date: Mon, 25 Jan 2010 22:13:10 +0000 (+0000) Subject: Implemented ARMInstPrinter::printThumbS4ImmOperand(). X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=541ba7dd9269a67e3f1da5e0add7bbddcb6b4f9d;p=oota-llvm.git Implemented ARMInstPrinter::printThumbS4ImmOperand(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94457 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp index 6885ecb25d4..97aa351d601 100644 --- a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp @@ -353,6 +353,5 @@ void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum) { } void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum) { - // FIXME: remove this. - abort(); + O << "#" << MI->getOperand(OpNum).getImm() * 4; }