mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 19:25:00 +00:00
[MBP] Spell the conditions the same way through out this if statement.
NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -715,7 +715,7 @@ MachineBlockPlacement::findBestLoopExit(MachineFunction &F, MachineLoop &L,
|
|||||||
// a frequency higher than the current exit before we consider breaking
|
// a frequency higher than the current exit before we consider breaking
|
||||||
// the layout.
|
// the layout.
|
||||||
BranchProbability Bias(100 - ExitBlockBias, 100);
|
BranchProbability Bias(100 - ExitBlockBias, 100);
|
||||||
if (!ExitingBB || BestExitLoopDepth < SuccLoopDepth ||
|
if (!ExitingBB || SuccLoopDepth > BestExitLoopDepth ||
|
||||||
ExitEdgeFreq > BestExitEdgeFreq ||
|
ExitEdgeFreq > BestExitEdgeFreq ||
|
||||||
(MBB->isLayoutSuccessor(Succ) &&
|
(MBB->isLayoutSuccessor(Succ) &&
|
||||||
!(ExitEdgeFreq < BestExitEdgeFreq * Bias))) {
|
!(ExitEdgeFreq < BestExitEdgeFreq * Bias))) {
|
||||||
|
Reference in New Issue
Block a user