commit | c6f0f30bb97c21286e49c6b5b91999c1012de275 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Mon Jan 25 22:13:10 2010 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Mon Jan 25 22:13:10 2010 +0000 |
tree | b6b8f02f967fb956502f77038faba204bd61c101 | |
parent | 761bd52f573c74f447056b90ed40d9d3b473c98f [diff] [blame] |
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 6885ecb..97aa351 100644 --- a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
@@ -353,6 +353,5 @@ } void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum) { - // FIXME: remove this. - abort(); + O << "#" << MI->getOperand(OpNum).getImm() * 4; }