mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
LoopVectorize: Move call of canHoistAllLoads to canVectorizeWithIfConvert
We only want to check this once, not for every conditional block in the loop. No functionality change (except that we don't perform a check redudantly anymore). llvm-svn: 181942
This commit is contained in:
parent
e1f815ebd9
commit
63eb047996
@ -2432,6 +2432,10 @@ bool LoopVectorizationLegality::canVectorizeWithIfConvert() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check that we can actually speculate the hoistable loads.
|
||||||
|
if (!LoadSpeculation.canHoistAllLoads())
|
||||||
|
return false;
|
||||||
|
|
||||||
// We can if-convert this loop.
|
// We can if-convert this loop.
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -3369,10 +3373,6 @@ bool LoopVectorizationLegality::blockCanBePredicated(BasicBlock *BB) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check that we can actually speculate the hoistable loads.
|
|
||||||
if (!LoadSpeculation.canHoistAllLoads())
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user