diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-03 01:07:48 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-03 01:07:48 +0000 |
commit | 50ba3c09bf29ba7ee9d5675721e03f2fd2cfa73a (patch) | |
tree | 442dda1f1740aec51d1480e78eacefa2da60c226 /llvm/lib | |
parent | a56cbccfc4134e3678563f64cdf8ad6b32f3d941 (diff) | |
download | bcm5719-llvm-50ba3c09bf29ba7ee9d5675721e03f2fd2cfa73a.tar.gz bcm5719-llvm-50ba3c09bf29ba7ee9d5675721e03f2fd2cfa73a.zip |
Remove unused function.
llvm-svn: 118139
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp | 10 | ||||
-rw-r--r-- | llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h | 2 |
2 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp index cc1f286d571..b8e929a5865 100644 --- a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp +++ b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp @@ -475,21 +475,11 @@ void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum, } } - - -void ARMInstPrinter::printCPInstOperand(const MCInst *MI, unsigned OpNum, - raw_ostream &O, - const char *Modifier) { - // FIXME: remove this. - abort(); -} - void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum, raw_ostream &O) { O << MI->getOperand(OpNum).getImm(); } - void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum, raw_ostream &O) { llvm_unreachable("Unhandled PC-relative pseudo-instruction!"); diff --git a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h index 3455a721c2a..eaf8183329b 100644 --- a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h +++ b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h @@ -100,8 +100,6 @@ public: void printSBitModifierOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printRegisterList(const MCInst *MI, unsigned OpNum, raw_ostream &O); - void printCPInstOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O, - const char *Modifier); // The jump table instructions have custom handling in ARMAsmPrinter // to output the jump table. Nothing further is necessary here. void printJTBlockOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O) {} |