diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-04-19 15:48:30 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-04-19 15:48:30 +0000 |
commit | 07c7e25718be03f7282b14da2f1c87cb3ce3447d (patch) | |
tree | 0ff50d0f1f8789f4cecf8f98df9df0fffa453f9c /llvm/lib/LTO/ThinLTOCodeGenerator.cpp | |
parent | ef2979af50770b862795a075e1f2a775c420fcfe (diff) | |
download | bcm5719-llvm-07c7e25718be03f7282b14da2f1c87cb3ce3447d.tar.gz bcm5719-llvm-07c7e25718be03f7282b14da2f1c87cb3ce3447d.zip |
Enable ODR uniquing of DITypes in more places
Summary:
This is a follow-on to apply Duncan's new DIType ODR uniquing from
r266549 and r266713 in more places.
Enable enableDebugTypeODRUniquing() for ThinLTO backends invoked via
libLTO, similar to the way r266549 enabled this for ThinLTO backend
threads launched from gold-plugin.
Also enable enableDebugTypeODRUniquing in opt, similar to the way
r266549 enabled this for llvm-link (on by default, can be disabled with
new -disable-debug-info-type-map option), since we may perform ThinLTO
importing from opt.
Reviewers: dexonsmith, joker.eph
Subscribers: joker.eph, llvm-commits
Differential Revision: http://reviews.llvm.org/D19263
llvm-svn: 266746
Diffstat (limited to 'llvm/lib/LTO/ThinLTOCodeGenerator.cpp')
-rw-r--r-- | llvm/lib/LTO/ThinLTOCodeGenerator.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp index ab13ec821aa..271520e4dd3 100644 --- a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp @@ -575,6 +575,7 @@ void ThinLTOCodeGenerator::run() { Pool.async([&](int count) { LLVMContext Context; Context.setDiscardValueNames(LTODiscardValueNames); + Context.enableDebugTypeODRUniquing(); auto ModuleIdentifier = ModuleBuffer.getBufferIdentifier(); DenseMap<GlobalValue::GUID, GlobalValue::LinkageTypes> ResolvedODR; |