From 0d30d30d58253de6b8836a11effcfc38d7566841 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Mon, 26 Nov 2012 23:54:47 +0000 Subject: 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 --- tools/llc/llc.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'tools/llc') diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index f3e5c20567f..4d4a74c009e 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -359,9 +359,7 @@ 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. -- cgit v1.2.3