From: Dan Gohman Date: Mon, 27 Jul 2009 23:23:47 +0000 (+0000) Subject: Pass true to the Internalize parameter of createStandardLTOPasses, X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b6dec1bdd6f6d33310879e6bbc3120f719c97483;p=oota-llvm.git 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 df8fbc60046..573a406a117 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/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);