aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/PassManager.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2012-11-26 23:54:47 +0000
committerOwen Anderson <resistor@mac.com>2012-11-26 23:54:47 +0000
commit0d30d30d58253de6b8836a11effcfc38d7566841 (patch)
tree735048df468267d94355d52caf2c042ac4d575b2 /include/llvm/PassManager.h
parent8d20b5f9ff609e70fae5c865931ab0f29e639d9c (diff)
downloadexternal_llvm-0d30d30d58253de6b8836a11effcfc38d7566841.zip
external_llvm-0d30d30d58253de6b8836a11effcfc38d7566841.tar.gz
external_llvm-0d30d30d58253de6b8836a11effcfc38d7566841.tar.bz2
Step towards implementation of pass manager with doInitialization and doFinalization per module detangled from runOn?? calls, still has temporary code not to break ASAN to be removed when that pass conforms to the proposed model
Patch by Pedro Artigas, with feedback from by Chandler Carruth. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassManager.h')
-rw-r--r--include/llvm/PassManager.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h
index 1d5e800..ce5fda7 100644
--- a/include/llvm/PassManager.h
+++ b/include/llvm/PassManager.h
@@ -58,14 +58,6 @@ public:
/// whether any of the passes modifies the module, and if so, return true.
bool run(Module &M);
- /// doInitialization - Run all of the initializers for the module passes.
- ///
- bool doInitialization();
-
- /// doFinalization - Run all of the finalizers for the module passes.
- ///
- bool doFinalization();
-
private:
/// PassManagerImpl_New is the actual class. PassManager is just the
/// wraper to publish simple pass manager interface