summaryrefslogtreecommitdiff
path: root/tools/llvm-extract/llvm-extract.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-09-18 23:31:16 +0000
committerAndrew Trick <atrick@apple.com>2013-09-18 23:31:16 +0000
commit7d4e9934e7ca83094c5cf41346966c8350179ff2 (patch)
tree48b3578a2c33d22d52bbb70883fb693801051f80 /tools/llvm-extract/llvm-extract.cpp
parent2cccc6220cc351b52d2cd2d0b7139502e854b68d (diff)
downloadllvm-7d4e9934e7ca83094c5cf41346966c8350179ff2.tar.gz
llvm-7d4e9934e7ca83094c5cf41346966c8350179ff2.tar.bz2
llvm-7d4e9934e7ca83094c5cf41346966c8350179ff2.tar.xz
Encapsulate PassManager debug flags to avoid static init and cxa_exit.
This puts all the global PassManager debugging flags, like -print-after-all and -time-passes, behind a managed static. This eliminates their static initializers and, more importantly, exit-time destructors. The only behavioral change I anticipate is that tools need to initialize the PassManager before parsing the command line in order to export these options, which makes sense. Tools that already initialize the standard passes (opt/llc) don't need to do anything new. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-extract/llvm-extract.cpp')
-rw-r--r--tools/llvm-extract/llvm-extract.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/llvm-extract/llvm-extract.cpp b/tools/llvm-extract/llvm-extract.cpp
index dc1a410953..99131764f3 100644
--- a/tools/llvm-extract/llvm-extract.cpp
+++ b/tools/llvm-extract/llvm-extract.cpp
@@ -96,6 +96,10 @@ int main(int argc, char **argv) {
LLVMContext &Context = getGlobalContext();
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
+
+ // Initialize PassManager for -time-passes support.
+ initializePassManager();
+
cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
// Use lazy loading, since we only care about selected global values.