diff options
author | Devang Patel <dpatel@apple.com> | 2007-09-18 23:58:14 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-09-18 23:58:14 +0000 |
commit | 0f2fb60a18d25bb6bb4803ed7a58d31db39fafab (patch) | |
tree | d379c49cea2cfe946f0ad3aa1f97ee2c6e266d06 /lib/Analysis/LoopPass.cpp | |
parent | 921c85c487788647f5b07656732eba103e1edfd7 (diff) |
ooops...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42118 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopPass.cpp')
-rw-r--r-- | lib/Analysis/LoopPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LoopPass.cpp b/lib/Analysis/LoopPass.cpp index 98e8ee55d3..414769bff7 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<LoopPass *>(P); assert (LP && "Invalid LPPassManager member"); - LP->runOnLoop(CurrentLoop, *this); + Changed |= LP->runOnLoop(CurrentLoop, *this); StopPassTimer(P); if (Changed) |