mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 03:08:43 +00:00
Re-constify things that don't break the build. Last patch in this
series, I promise. llvm-svn: 35848
This commit is contained in:
parent
461f7ed33b
commit
5d0148ae7c
@ -675,8 +675,10 @@ void LoopSimplify::InsertUniqueBackedgeBlock(Loop *L) {
|
||||
|
||||
// Returns true if BasicBlock A dominates at least one block in vector B
|
||||
// Helper function for UpdateDomInfoForRevectoredPreds
|
||||
static bool BlockDominatesAny(BasicBlock* A, std::vector<BasicBlock*>& B, ETForest& ETF) {
|
||||
for (std::vector<BasicBlock*>::iterator BI = B.begin(), BE = B.end(); BI != BE; ++BI) {
|
||||
static bool BlockDominatesAny(BasicBlock* A, const std::vector<BasicBlock*>& B,
|
||||
ETForest& ETF) {
|
||||
for (std::vector<BasicBlock*>::const_iterator BI = B.begin(), BE = B.end();
|
||||
BI != BE; ++BI) {
|
||||
if (ETF.dominates(A, *BI))
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user