diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/LTO/LTO.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/LTO/LTOBackend.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/LTO/LTO.cpp b/llvm/lib/LTO/LTO.cpp index 39ec4e26c4f..8d4f1a48d93 100644 --- a/llvm/lib/LTO/LTO.cpp +++ b/llvm/lib/LTO/LTO.cpp @@ -468,7 +468,7 @@ public: const FunctionImporter::ImportMapTy &ImportList, const GVSummaryMapTy &DefinedGlobals, MapVector<StringRef, MemoryBufferRef> &ModuleMap) { - LLVMContext BackendContext; + LTOLLVMContext BackendContext(Conf); ErrorOr<std::unique_ptr<Module>> MOrErr = parseBitcodeFile(MBRef, BackendContext); diff --git a/llvm/lib/LTO/LTOBackend.cpp b/llvm/lib/LTO/LTOBackend.cpp index 732f35a56b2..20e2b9edf97 100644 --- a/llvm/lib/LTO/LTOBackend.cpp +++ b/llvm/lib/LTO/LTOBackend.cpp @@ -271,6 +271,8 @@ Error lto::thinBackend(Config &Conf, unsigned Task, AddOutputFn AddOutput, return Error(); auto ModuleLoader = [&](StringRef Identifier) { + assert(Mod.getContext().isODRUniquingDebugTypes() && + "ODR Type uniquing shoudl be enabled on the context"); return std::move(getLazyBitcodeModule(MemoryBuffer::getMemBuffer( ModuleMap[Identifier], false), Mod.getContext(), |