1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Remove a dead switch statement.

llvm-svn: 58644
This commit is contained in:
Evan Cheng 2008-11-03 21:26:52 +00:00
parent b3fd30ed7c
commit 999398c004

View File

@ -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.