summaryrefslogtreecommitdiff
path: root/include/llvm/Pass.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-11 19:05:53 +0000
committerDan Gohman <gohman@apple.com>2010-08-11 19:05:53 +0000
commit73e88002290920f2d1599bde7878ed01a9e8c242 (patch)
tree583b6fd1caed602d7e79504a0b232d008146f574 /include/llvm/Pass.h
parentb68f274b6d63ffcf4391304e7e133b7913f17d96 (diff)
downloadllvm-73e88002290920f2d1599bde7878ed01a9e8c242.tar.gz
llvm-73e88002290920f2d1599bde7878ed01a9e8c242.tar.bz2
llvm-73e88002290920f2d1599bde7878ed01a9e8c242.tar.xz
Delete FunctionPass::runOnModule, which is unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Pass.h')
-rw-r--r--include/llvm/Pass.h6
1 files changed, 0 insertions, 6 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.
///