mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Add 64-bit jmp instructions to the list of instructions that
can terminate a block with no fall-through. llvm-svn: 42029
This commit is contained in:
parent
41a6dea029
commit
b096221b3e
@ -582,7 +582,9 @@ bool X86InstrInfo::BlockHasNoFallThrough(MachineBasicBlock &MBB) const {
|
||||
case X86::TAILJMPm:
|
||||
case X86::JMP: // Uncond branch.
|
||||
case X86::JMP32r: // Indirect branch.
|
||||
case X86::JMP64r: // Indirect branch (64-bit).
|
||||
case X86::JMP32m: // Indirect branch through mem.
|
||||
case X86::JMP64m: // Indirect branch through mem (64-bit).
|
||||
return true;
|
||||
default: return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user