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 | f272f9b3d5fb65770a4aeee0df871a3334e7744c (patch) | |
tree | e3fd97055976fd5be860d27a2816277ad6fa35c6 /llvm/lib/Transforms/Utils/LoopExtractor.cpp | |
parent | a6025e648052a332d3975573105570edd2660c5c (diff) | |
download | bcm5719-llvm-f272f9b3d5fb65770a4aeee0df871a3334e7744c.tar.gz bcm5719-llvm-f272f9b3d5fb65770a4aeee0df871a3334e7744c.zip |
Make a note that this is usually used via bugpoint.
llvm-svn: 12068
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopExtractor.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopExtractor.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopExtractor.cpp b/llvm/lib/Transforms/Utils/LoopExtractor.cpp index da97b5f62c2..3eda45265d2 100644 --- a/llvm/lib/Transforms/Utils/LoopExtractor.cpp +++ b/llvm/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 |