aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/LoopExtractor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/IPO/LoopExtractor.cpp')
-rw-r--r--lib/Transforms/IPO/LoopExtractor.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/Transforms/IPO/LoopExtractor.cpp b/lib/Transforms/IPO/LoopExtractor.cpp
index 3aa5686b21..5e7dbc6614 100644
--- a/lib/Transforms/IPO/LoopExtractor.cpp
+++ b/lib/Transforms/IPO/LoopExtractor.cpp
@@ -18,17 +18,18 @@
#include "llvm/Module.h"
#include "llvm/Pass.h"
#include "llvm/Analysis/LoopInfo.h"
+#include "llvm/Transforms/Scalar.h"
#include "llvm/Transforms/Utils/FunctionUtils.h"
using namespace llvm;
namespace {
// FIXME: PassManager should allow Module passes to require FunctionPasses
struct LoopExtractor : public FunctionPass {
- virtual bool run(Module &M);
virtual bool runOnFunction(Function &F);
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<LoopInfo>();
+ AU.addRequiredID(LoopSimplifyID);
}
};
@@ -36,13 +37,6 @@ namespace {
X("loop-extract", "Extract loops into new functions");
} // End anonymous namespace
-bool LoopExtractor::run(Module &M) {
- bool Changed = false;
- for (Module::iterator i = M.begin(), e = M.end(); i != e; ++i)
- Changed |= runOnFunction(*i);
- return Changed;
-}
-
bool LoopExtractor::runOnFunction(Function &F) {
std::cerr << F.getName() << "\n";