mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Fold isRematerializable checks into isSafeToReMat.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b18ae3cb63
commit
3689ff450a
@ -715,7 +715,9 @@ bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, bool &SawStore) {
|
||||
/// instruction which defined the specified register instead of copying it.
|
||||
bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII, unsigned DstReg) {
|
||||
bool SawStore = false;
|
||||
if (!isSafeToMove(TII, SawStore))
|
||||
if (!getDesc().isRematerializable() ||
|
||||
!TII->isTriviallyReMaterializable(this) ||
|
||||
!isSafeToMove(TII, SawStore))
|
||||
return false;
|
||||
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
||||
MachineOperand &MO = getOperand(i);
|
||||
|
Loading…
x
Reference in New Issue
Block a user