diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-03-02 00:19:09 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-03-02 00:19:09 +0000 |
commit | 38b8fd107816b94df1cd5b89123964103498767c (patch) | |
tree | 73ae26b6deef5c828066e4df85ab204bd48ae5ea /lib/Transforms | |
parent | 538607fe457a77d6125f60a29371e8838ea81167 (diff) |
Make a note that this is usually used via bugpoint.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Utils/LoopExtractor.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/LoopExtractor.cpp b/lib/Transforms/Utils/LoopExtractor.cpp index da97b5f62c..3eda45265d 100644 --- a/lib/Transforms/Utils/LoopExtractor.cpp +++ b/lib/Transforms/Utils/LoopExtractor.cpp @@ -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 |