aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-27 23:23:47 +0000
committerDan Gohman <gohman@apple.com>2009-07-27 23:23:47 +0000
commit9f723134e2070a844ff5ee1436fe77789d73db6e (patch)
tree15a2345e8e62239b11763dcbc67ac249c26c04ce
parentbc9c6477b3a8891a360c942c418fd6dc19a3758e (diff)
downloadexternal_llvm-9f723134e2070a844ff5ee1436fe77789d73db6e.zip
external_llvm-9f723134e2070a844ff5ee1436fe77789d73db6e.tar.gz
external_llvm-9f723134e2070a844ff5ee1436fe77789d73db6e.tar.bz2
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
-rw-r--r--tools/bugpoint/bugpoint.cpp2
1 files changed, 1 insertions, 1 deletions
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 @@ int main(int argc, char **argv) {
}
if (StandardLinkOpts)
- createStandardLTOPasses(&PM, /*Internalize=*/false,
+ createStandardLTOPasses(&PM, /*Internalize=*/true,
/*RunInliner=*/true,
/*VerifyEach=*/false);