mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
Doh. Skip JT branches.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33501 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
338305b0b6
commit
743fa032a7
@ -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…
x
Reference in New Issue
Block a user