mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Recognize more branches.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14207 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
afe16e1742
commit
fc7fa31211
@ -54,6 +54,17 @@ FunctionPass *llvm::createSparcV8DelaySlotFillerPass (TargetMachine &tm) {
|
||||
|
||||
static bool hasDelaySlot (unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
case V8::BA:
|
||||
case V8::BCC:
|
||||
case V8::BCS:
|
||||
case V8::BE:
|
||||
case V8::BG:
|
||||
case V8::BGE:
|
||||
case V8::BGU:
|
||||
case V8::BL:
|
||||
case V8::BLE:
|
||||
case V8::BLEU:
|
||||
case V8::BNE:
|
||||
case V8::CALL:
|
||||
case V8::RETL:
|
||||
return true;
|
||||
|
@ -54,6 +54,17 @@ FunctionPass *llvm::createSparcV8DelaySlotFillerPass (TargetMachine &tm) {
|
||||
|
||||
static bool hasDelaySlot (unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
case V8::BA:
|
||||
case V8::BCC:
|
||||
case V8::BCS:
|
||||
case V8::BE:
|
||||
case V8::BG:
|
||||
case V8::BGE:
|
||||
case V8::BGU:
|
||||
case V8::BL:
|
||||
case V8::BLE:
|
||||
case V8::BLEU:
|
||||
case V8::BNE:
|
||||
case V8::CALL:
|
||||
case V8::RETL:
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user