1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Pass true to the Internalize parameter of createStandardLTOPasses,

to match llvm-ld's default behavior.

llvm-svn: 77273
This commit is contained in:
Dan Gohman 2009-07-27 23:23:47 +00:00
parent 3edfc4bb16
commit 839f148e82

View File

@ -113,7 +113,7 @@ int main(int argc, char **argv) {
}
if (StandardLinkOpts)
createStandardLTOPasses(&PM, /*Internalize=*/false,
createStandardLTOPasses(&PM, /*Internalize=*/true,
/*RunInliner=*/true,
/*VerifyEach=*/false);