1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Doh. Skip JT branches.

llvm-svn: 33501
This commit is contained in:
Evan Cheng 2007-01-25 19:43:52 +00:00
parent 1e8602cf97
commit 7dccb7be86

View File

@ -238,7 +238,8 @@ void ARMConstantIslands::InitialFunctionScan(MachineFunction &Fn,
unsigned Scale = 1;
int UOpc = Opc;
switch (Opc) {
default: break; // Ignore JT branches
default:
continue; // Ignore JT branches
case ARM::Bcc:
isCond = true;
UOpc = ARM::B;