Pass true to the Internalize parameter of createStandardLTOPasses,
to match llvm-ld's default behavior.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77273 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index df8fbc6..573a406 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -113,7 +113,7 @@
   }
       
   if (StandardLinkOpts)
-    createStandardLTOPasses(&PM, /*Internalize=*/false, 
+    createStandardLTOPasses(&PM, /*Internalize=*/true,
                             /*RunInliner=*/true,
                             /*VerifyEach=*/false);