summaryrefslogtreecommitdiff
path: root/tools/bugpoint/bugpoint.cpp
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
commitb6dec1bdd6f6d33310879e6bbc3120f719c97483 (patch)
tree15a2345e8e62239b11763dcbc67ac249c26c04ce /tools/bugpoint/bugpoint.cpp
parentf9507ffa5b1c8697009e86bbedaacb51e4c6735d (diff)
downloadllvm-b6dec1bdd6f6d33310879e6bbc3120f719c97483.tar.gz
llvm-b6dec1bdd6f6d33310879e6bbc3120f719c97483.tar.bz2
llvm-b6dec1bdd6f6d33310879e6bbc3120f719c97483.tar.xz
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
Diffstat (limited to 'tools/bugpoint/bugpoint.cpp')
-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 df8fbc6004..573a406a11 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);