Follow up for r261597: Add the * to the auto.

llvm-svn: 261600
This commit is contained in:
Michael Zolotukhin 2016-02-23 00:57:48 +00:00
parent e47387fc12
commit 792a885537
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ FoldBlockIntoPredecessor(BasicBlock *BB, LoopInfo *LI, ScalarEvolution *SE,
if (DomTreeNode *DTN = DT->getNode(BB)) {
DomTreeNode *PredDTN = DT->getNode(OnlyPred);
SmallVector<DomTreeNode *, 8> Children(DTN->begin(), DTN->end());
for (auto DI : Children)
for (auto *DI : Children)
DT->changeImmediateDominator(DI, PredDTN);
DT->eraseNode(BB);