Make a note that this is usually used via bugpoint.
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 2 Mar 2004 00:19:09 +0000 (00:19 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 2 Mar 2004 00:19:09 +0000 (00:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12068 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LoopExtractor.cpp

index da97b5f62c29d51e3e820854b5d3c033d27a6a28..3eda45265d237323fba8a519940eb645a7013f95 100644 (file)
@@ -2,7 +2,8 @@
 //
 // A pass wrapper around the ExtractLoop() scalar transformation to extract each
 // top-level loop into its own new function. If the loop is the ONLY loop in a
-// given function, it is not touched.
+// given function, it is not touched. This is a pass most useful for debugging
+// via bugpoint.
 //
 //===----------------------------------------------------------------------===//
 
@@ -58,8 +59,6 @@ bool LoopExtractor::runOnFunction(Function &F) {
   return Changed;
 }
 
-
-
 } // End anonymous namespace 
 
 /// createLoopExtractorPass