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).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181942 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Arnold Schwaighofer 2013-05-15 22:38:14 +00:00
parent 377b227012
commit 0aad08adfd

View File

@ -2432,6 +2432,10 @@ bool LoopVectorizationLegality::canVectorizeWithIfConvert() {
return false;
}
// Check that we can actually speculate the hoistable loads.
if (!LoadSpeculation.canHoistAllLoads())
return false;
// We can if-convert this loop.
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;
}