From a30c0a1b3e3c67f142627fafd7a61abf0f122d44 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 27 Jul 2009 23:23:47 +0000 Subject: [PATCH] Pass true to the Internalize parameter of createStandardLTOPasses, to match llvm-ld's default behavior. llvm-svn: 77273 --- llvm/tools/bugpoint/bugpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index df8fbc6..573a406 100644 --- a/llvm/tools/bugpoint/bugpoint.cpp +++ b/llvm/tools/bugpoint/bugpoint.cpp @@ -113,7 +113,7 @@ int main(int argc, char **argv) { } if (StandardLinkOpts) - createStandardLTOPasses(&PM, /*Internalize=*/false, + createStandardLTOPasses(&PM, /*Internalize=*/true, /*RunInliner=*/true, /*VerifyEach=*/false); -- 2.7.4