summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2012-11-27 00:53:24 +0000
committerOwen Anderson <resistor@mac.com>2012-11-27 00:53:24 +0000
commit9780d352b9108d49097970f6686fd61aba58d7fc (patch)
tree505571eeebc1e4a3d2487ac867ab3c218f947dc4 /tools/llc
parent6f6b97daf67ba017e5a10125551d5bd39dd80830 (diff)
downloadllvm-9780d352b9108d49097970f6686fd61aba58d7fc.tar.gz
llvm-9780d352b9108d49097970f6686fd61aba58d7fc.tar.bz2
llvm-9780d352b9108d49097970f6686fd61aba58d7fc.tar.xz
Revert r168635 "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".
It appears to have broken at least one buildbot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168654 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/llc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 4d4a74c009..f3e5c20567 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -359,7 +359,9 @@ int main(int argc, char **argv) {
// Before executing passes, print the final values of the LLVM options.
cl::PrintOptionValues();
+ PM.doInitialization();
PM.run(*mod);
+ PM.doFinalization();
}
// Declare success.