forked from OSchip/llvm-project
[MBP] Spell the conditions the same way through out this if statement.
NFC. llvm-svn: 235009
This commit is contained in:
parent
725abcb889
commit
26d3017b8e
|
@ -715,7 +715,7 @@ MachineBlockPlacement::findBestLoopExit(MachineFunction &F, MachineLoop &L,
|
|||
// a frequency higher than the current exit before we consider breaking
|
||||
// the layout.
|
||||
BranchProbability Bias(100 - ExitBlockBias, 100);
|
||||
if (!ExitingBB || BestExitLoopDepth < SuccLoopDepth ||
|
||||
if (!ExitingBB || SuccLoopDepth > BestExitLoopDepth ||
|
||||
ExitEdgeFreq > BestExitEdgeFreq ||
|
||||
(MBB->isLayoutSuccessor(Succ) &&
|
||||
!(ExitEdgeFreq < BestExitEdgeFreq * Bias))) {
|
||||
|
|
Loading…
Reference in New Issue