mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 23:48:56 +00:00
Remove redundant conditions (PR31753). NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297976 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b789f7bdf0
commit
01137cec98
@ -955,7 +955,7 @@ static void getPhiRegs(MachineInstr &Phi, MachineBasicBlock *Loop,
|
||||
for (unsigned i = 1, e = Phi.getNumOperands(); i != e; i += 2)
|
||||
if (Phi.getOperand(i + 1).getMBB() != Loop)
|
||||
InitVal = Phi.getOperand(i).getReg();
|
||||
else if (Phi.getOperand(i + 1).getMBB() == Loop)
|
||||
else
|
||||
LoopVal = Phi.getOperand(i).getReg();
|
||||
|
||||
assert(InitVal != 0 && LoopVal != 0 && "Unexpected Phi structure.");
|
||||
@ -3475,7 +3475,7 @@ bool SwingSchedulerDAG::isLoopCarriedOrder(SUnit *Source, const SDep &Dep,
|
||||
// increment value to determine if the accesses may be loop carried.
|
||||
if (OffsetS >= OffsetD)
|
||||
return OffsetS + AccessSizeS > DeltaS;
|
||||
else if (OffsetS < OffsetD)
|
||||
else
|
||||
return OffsetD + AccessSizeD > DeltaD;
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user