diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-05-19 23:32:21 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-05-19 23:32:21 +0000 |
commit | 660437975baecbb78f9e33d3f976426039df3564 (patch) | |
tree | 7be0b844a79b9b820a57704ae1c1688ab16d7ab9 /llvm/lib/Transforms/IPO/FunctionImport.cpp | |
parent | 0de31c7e531a154e401cf0e639e78bdd76a06f6d (diff) | |
download | bcm5719-llvm-660437975baecbb78f9e33d3f976426039df3564.tar.gz bcm5719-llvm-660437975baecbb78f9e33d3f976426039df3564.zip |
Revert "ThinLTO: Verify bitcode before lauching the ThinLTOCodeGenerator."
This reverts commit r303438 while deliberating buildbot breakage.
llvm-svn: 303467
Diffstat (limited to 'llvm/lib/Transforms/IPO/FunctionImport.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/FunctionImport.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionImport.cpp b/llvm/lib/Transforms/IPO/FunctionImport.cpp index 453fd17e1d4..231487923fa 100644 --- a/llvm/lib/Transforms/IPO/FunctionImport.cpp +++ b/llvm/lib/Transforms/IPO/FunctionImport.cpp @@ -646,8 +646,7 @@ void llvm::thinLTOInternalizeModule(Module &TheModule, // index. // Expected<bool> FunctionImporter::importFunctions( - Module &DestModule, const FunctionImporter::ImportMapTy &ImportList, - Optional<std::function<void(Module &)>> PostBitcodeLoading) { + Module &DestModule, const FunctionImporter::ImportMapTy &ImportList) { DEBUG(dbgs() << "Starting import for Module " << DestModule.getModuleIdentifier() << "\n"); unsigned ImportedCount = 0; @@ -755,8 +754,6 @@ Expected<bool> FunctionImporter::importFunctions( // Upgrade debug info after we're done materializing all the globals and we // have loaded all the required metadata! UpgradeDebugInfo(*SrcModule); - if (PostBitcodeLoading) - (*PostBitcodeLoading)(*SrcModule); // Link in the specified functions. if (renameModuleForThinLTO(*SrcModule, Index, &GlobalsToImport)) |