diff options
| author | Dan Gohman <gohman@apple.com> | 2009-07-27 23:23:47 +0000 | 
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-07-27 23:23:47 +0000 | 
| commit | a30c0a1b3e3c67f142627fafd7a61abf0f122d44 (patch) | |
| tree | f72a51fac0f2c2f09fbfde98753f6d3141607bff /llvm/tools | |
| parent | eb6bb32bef6a2bcbe79d1d98f61b7202fcbc8305 (diff) | |
| download | bcm5719-llvm-a30c0a1b3e3c67f142627fafd7a61abf0f122d44.tar.gz bcm5719-llvm-a30c0a1b3e3c67f142627fafd7a61abf0f122d44.zip  | |
Pass true to the Internalize parameter of createStandardLTOPasses,
to match llvm-ld's default behavior.
llvm-svn: 77273
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/bugpoint/bugpoint.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index df8fbc60046..573a406a117 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);  | 

