[llvm-commits] [llvm] r77273 - /llvm/trunk/tools/bugpoint/bugpoint.cpp

Dan Gohman gohman at apple.com
Mon Jul 27 16:23:48 PDT 2009


Author: djg
Date: Mon Jul 27 18:23:47 2009
New Revision: 77273

URL: http://llvm.org/viewvc/llvm-project?rev=77273&view=rev
Log:
Pass true to the Internalize parameter of createStandardLTOPasses,
to match llvm-ld's default behavior.

Modified:
    llvm/trunk/tools/bugpoint/bugpoint.cpp

Modified: llvm/trunk/tools/bugpoint/bugpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/bugpoint.cpp?rev=77273&r1=77272&r2=77273&view=diff

==============================================================================
--- llvm/trunk/tools/bugpoint/bugpoint.cpp (original)
+++ llvm/trunk/tools/bugpoint/bugpoint.cpp Mon Jul 27 18:23:47 2009
@@ -113,7 +113,7 @@
   }
       
   if (StandardLinkOpts)
-    createStandardLTOPasses(&PM, /*Internalize=*/false, 
+    createStandardLTOPasses(&PM, /*Internalize=*/true,
                             /*RunInliner=*/true,
                             /*VerifyEach=*/false);
 





More information about the llvm-commits mailing list