aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-27 23:52:07 +0000
committerDan Gohman <gohman@apple.com>2009-09-27 23:52:07 +0000
commitee836a04ed5b6c302790bf4db303d04e17d48dfd (patch)
treeb4135a49ad4fbb1d6e51740e54c7ccfb7059b605 /lib/Analysis
parenta86280282a7ddd9df2015d13012ad229ccfcd383 (diff)
downloadexternal_llvm-ee836a04ed5b6c302790bf4db303d04e17d48dfd.zip
external_llvm-ee836a04ed5b6c302790bf4db303d04e17d48dfd.tar.gz
external_llvm-ee836a04ed5b6c302790bf4db303d04e17d48dfd.tar.bz2
Fix an old copy+pasto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/LoopPass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LoopPass.cpp b/lib/Analysis/LoopPass.cpp
index 4ed802c..c9515f6 100644
--- a/lib/Analysis/LoopPass.cpp
+++ b/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);