aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-11-03 21:26:52 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-11-03 21:26:52 +0000
commit49987360ade8d506782835222f5f00dfc5ef9ec6 (patch)
tree4e55cffa601f560f787b05b28003f74e1bb01b9f
parentafaf12036d0432dd3265436c94a66183b21c2115 (diff)
Remove a dead switch statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58644 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
index 62bf87b46b..5c6312420c 100644
--- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
+++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@ -775,23 +775,6 @@ void ARMAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
default: {
if (InCPMode && AFI->isThumbFunction())
InCPMode = false;
- switch (Opc) {
- case ARM::PICADD:
- case ARM::PICLD:
- case ARM::PICLDZH:
- case ARM::PICLDZB:
- case ARM::PICLDH:
- case ARM::PICLDB:
- case ARM::PICLDSH:
- case ARM::PICLDSB:
- case ARM::PICSTR:
- case ARM::PICSTRH:
- case ARM::PICSTRB:
- case ARM::tPICADD:
- break;
- default:
- break;
- }
}}
// Call the autogenerated instruction printer routines.