[llvm-commits] [llvm] r70580 - /llvm/trunk/lib/Analysis/LoopInfo.cpp

Dan Gohman gohman at apple.com
Fri May 1 14:58:05 PDT 2009


Author: djg
Date: Fri May  1 16:58:05 2009
New Revision: 70580

URL: http://llvm.org/viewvc/llvm-project?rev=70580&view=rev
Log:
Change the description string of the LoopInfo pass.
"Construction" makes it sound like a pass that might
modify the CFG to construct natural loops.

Modified:
    llvm/trunk/lib/Analysis/LoopInfo.cpp

Modified: llvm/trunk/lib/Analysis/LoopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopInfo.cpp?rev=70580&r1=70579&r2=70580&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/LoopInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LoopInfo.cpp Fri May  1 16:58:05 2009
@@ -29,7 +29,7 @@
 
 char LoopInfo::ID = 0;
 static RegisterPass<LoopInfo>
-X("loops", "Natural Loop Construction", true, true);
+X("loops", "Natural Loop Information", true, true);
 
 //===----------------------------------------------------------------------===//
 // Loop implementation





More information about the llvm-commits mailing list