diff options
author | Eugene Leviant <eleviant@accesssoftek.com> | 2018-01-22 13:35:40 +0000 |
---|---|---|
committer | Eugene Leviant <eleviant@accesssoftek.com> | 2018-01-22 13:35:40 +0000 |
commit | 28d8a49f4276467e41ceec525b1cb2648f0ae653 (patch) | |
tree | 0aee42e3d302c4ac717d652111126bb1fe234a93 /llvm/lib/LTO/ThinLTOCodeGenerator.cpp | |
parent | 596fcb1b0f609ed285e27fffc273d6b4e6a56890 (diff) | |
download | bcm5719-llvm-28d8a49f4276467e41ceec525b1cb2648f0ae653.tar.gz bcm5719-llvm-28d8a49f4276467e41ceec525b1cb2648f0ae653.zip |
[ThinLTO] Re-commit of dot dumper after test fix
llvm-svn: 323116
Diffstat (limited to 'llvm/lib/LTO/ThinLTOCodeGenerator.cpp')
-rw-r--r-- | llvm/lib/LTO/ThinLTOCodeGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp index 692396eac20..b5ac5a77e9c 100644 --- a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp @@ -592,7 +592,7 @@ std::unique_ptr<TargetMachine> TargetMachineBuilder::create() const { */ std::unique_ptr<ModuleSummaryIndex> ThinLTOCodeGenerator::linkCombinedIndex() { std::unique_ptr<ModuleSummaryIndex> CombinedIndex = - llvm::make_unique<ModuleSummaryIndex>(); + llvm::make_unique<ModuleSummaryIndex>(/*IsPeformingAnalysis=*/false); uint64_t NextModuleId = 0; for (auto &ModuleBuffer : Modules) { if (Error Err = readModuleSummaryIndex(ModuleBuffer.getMemBuffer(), |