summaryrefslogtreecommitdiff
path: root/include/llvm/PassManager.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-09-19 06:02:43 +0000
committerAndrew Trick <atrick@apple.com>2013-09-19 06:02:43 +0000
commitabe68f59174c7418ae73de0a87587abe0be1fb03 (patch)
treeab1e29c1c732267f8fc6e0407243499e46fea9a3 /include/llvm/PassManager.h
parent7d4e9934e7ca83094c5cf41346966c8350179ff2 (diff)
Revert "Encapsulate PassManager debug flags to avoid static init and cxa_exit."
Working on a better solution to this. This reverts commit 7d4e9934e7ca83094c5cf41346966c8350179ff2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassManager.h')
-rw-r--r--include/llvm/PassManager.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h
index 044dc3320ba..b6a8186a4e8 100644
--- a/include/llvm/PassManager.h
+++ b/include/llvm/PassManager.h
@@ -28,11 +28,6 @@ class Module;
class PassManagerImpl;
class FunctionPassManagerImpl;
-/// Called by tools to initialize globals and register options at a particular
-/// point (before command line parsing). If this is not called, then PassManager
-/// globals are lazily initialized at first use.
-void initializePassManager();
-
/// PassManagerBase - An abstract interface to allow code to add passes to
/// a pass manager without having to hard-code what kind of pass manager
/// it is.