From e3ef9b5fe241df8eb835f1923b17314ef5e7c61f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 11 Oct 2004 04:47:18 +0000 Subject: [PATCH] Don't miss global optimizations because we run before the inliner git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16913 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccld/GenerateCode.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index a803b43a0b2..1144b92a643 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -184,6 +184,7 @@ int llvm::GenerateBytecode(Module *M, bool Strip, bool Internalize, addPass(Passes, createFunctionInliningPass()); // Inline small functions addPass(Passes, createPruneEHPass()); // Remove dead EH info + addPass(Passes, createGlobalOptimizerPass()); // Optimize globals again. addPass(Passes, createGlobalDCEPass()); // Remove dead functions // If we didn't decide to inline a function, check to see if we can -- 2.34.1