[MBP] Spell the conditions the same way through out this if statement.

NFC.

llvm-svn: 235009
This commit is contained in:
Chandler Carruth 2015-04-15 13:39:42 +00:00
parent 725abcb889
commit 26d3017b8e
1 changed files with 1 additions and 1 deletions

View File

@ -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))) {