llvm-svn: 42118
This commit is contained in:
Devang Patel 2007-09-18 23:58:14 +00:00
parent 467e619a65
commit ee35011d01
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ bool LPPassManager::runOnFunction(Function &F) {
StartPassTimer(P);
LoopPass *LP = dynamic_cast<LoopPass *>(P);
assert (LP && "Invalid LPPassManager member");
LP->runOnLoop(CurrentLoop, *this);
Changed |= LP->runOnLoop(CurrentLoop, *this);
StopPassTimer(P);
if (Changed)