diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-27 23:52:07 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-27 23:52:07 +0000 |
commit | b0934cdd1cbb561755b16701d735eb39ca7ccba7 (patch) | |
tree | 6a83a6b3143f34f5d554936146c419219dcf2ac5 /llvm/lib/Analysis/LoopPass.cpp | |
parent | adde5dfde2909781b59e17018874c844a0bfd6bd (diff) | |
download | bcm5719-llvm-b0934cdd1cbb561755b16701d735eb39ca7ccba7.tar.gz bcm5719-llvm-b0934cdd1cbb561755b16701d735eb39ca7ccba7.zip |
Fix an old copy+pasto.
llvm-svn: 82947
Diffstat (limited to 'llvm/lib/Analysis/LoopPass.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopPass.cpp b/llvm/lib/Analysis/LoopPass.cpp index 4ed802cb3ff..c9515f600fe 100644 --- a/llvm/lib/Analysis/LoopPass.cpp +++ b/llvm/lib/Analysis/LoopPass.cpp @@ -220,7 +220,7 @@ bool LPPassManager::runOnFunction(Function &F) { skipThisLoop = false; redoThisLoop = false; - // Run all passes on current SCC + // Run all passes on the current Loop. for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { Pass *P = getContainedPass(Index); |