summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-03-14 18:34:35 +0000
committerJim Grosbach <grosbach@apple.com>2011-03-14 18:34:35 +0000
commitc5efcbad7101f73ccf17543a3ecef636856b7c3c (patch)
treeceafd903961a2d83fc48ca17a82038915bd676e7 /llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
parent37139edc8cceef9326d0947d3aee854ab854274b (diff)
downloadbcm5719-llvm-c5efcbad7101f73ccf17543a3ecef636856b7c3c.tar.gz
bcm5719-llvm-c5efcbad7101f73ccf17543a3ecef636856b7c3c.zip
Remove some dead patterns.
llvm-svn: 127601
Diffstat (limited to 'llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp')
-rw-r--r--llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
index 303ee2b69d3..82bd678a26b 100644
--- a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
+++ b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
@@ -417,16 +417,6 @@ void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
}
}
-void ARMInstPrinter::printNegZeroOperand(const MCInst *MI, unsigned OpNum,
- raw_ostream &O) {
- const MCOperand &Op = MI->getOperand(OpNum);
- O << '#';
- if (Op.getImm() < 0)
- O << '-' << (-Op.getImm() - 1);
- else
- O << Op.getImm();
-}
-
void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum,
raw_ostream &O) {
ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
OpenPOWER on IntegriCloud