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:
parent
1e8602cf97
commit
7dccb7be86
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user