aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Pass.h6
-rw-r--r--lib/VMCore/Pass.cpp13
2 files changed, 0 insertions, 19 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index 4cbf27b98b..7760bc193a 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -295,12 +295,6 @@ public:
///
virtual bool doFinalization(Module &);
- /// runOnModule - On a module, we run this pass by initializing,
- /// ronOnFunction'ing once for every function in the module, then by
- /// finalizing.
- ///
- virtual bool runOnModule(Module &M);
-
/// run - On a function, we simply initialize, run the function, then
/// finalize.
///
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp
index 41a87d60ad..1afebc54ee 100644
--- a/lib/VMCore/Pass.cpp
+++ b/lib/VMCore/Pass.cpp
@@ -141,19 +141,6 @@ Pass *FunctionPass::createPrinterPass(raw_ostream &O,
return createPrintFunctionPass(Banner, &O);
}
-// run - On a module, we run this pass by initializing, runOnFunction'ing once
-// for every function in the module, then by finalizing.
-//
-bool FunctionPass::runOnModule(Module &M) {
- bool Changed = doInitialization(M);
-
- for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
- if (!I->isDeclaration()) // Passes are not run on external functions!
- Changed |= runOnFunction(*I);
-
- return Changed | doFinalization(M);
-}
-
// run - On a function, we simply initialize, run the function, then finalize.
//
bool FunctionPass::run(Function &F) {