From: Devang Patel Date: Tue, 18 Sep 2007 23:58:14 +0000 (+0000) Subject: ooops... X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=0f2fb60a18d25bb6bb4803ed7a58d31db39fafab ooops... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42118 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/LoopPass.cpp b/lib/Analysis/LoopPass.cpp index 98e8ee55d38..414769bff74 100644 --- a/lib/Analysis/LoopPass.cpp +++ b/lib/Analysis/LoopPass.cpp @@ -222,7 +222,7 @@ bool LPPassManager::runOnFunction(Function &F) { StartPassTimer(P); LoopPass *LP = dynamic_cast(P); assert (LP && "Invalid LPPassManager member"); - LP->runOnLoop(CurrentLoop, *this); + Changed |= LP->runOnLoop(CurrentLoop, *this); StopPassTimer(P); if (Changed)