diff options
Diffstat (limited to 'lib/LTO/ThinLTOCodeGenerator.cpp')
| -rw-r--r-- | lib/LTO/ThinLTOCodeGenerator.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/LTO/ThinLTOCodeGenerator.cpp b/lib/LTO/ThinLTOCodeGenerator.cpp index b4ee7c2b2fbc1..65a7994325bcd 100644 --- a/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/lib/LTO/ThinLTOCodeGenerator.cpp @@ -446,7 +446,7 @@ ProcessThinLTOModule(Module &TheModule, ModuleSummaryIndex &Index,      {        raw_svector_ostream OS(OutputBuffer);        ProfileSummaryInfo PSI(TheModule); -      auto Index = buildModuleSummaryIndex(TheModule, nullptr, nullptr); +      auto Index = buildModuleSummaryIndex(TheModule, nullptr, &PSI);        WriteBitcodeToFile(&TheModule, OS, true, &Index);      }      return make_unique<ObjectMemoryBuffer>(std::move(OutputBuffer)); @@ -1024,4 +1024,5 @@ void ThinLTOCodeGenerator::run() {    // If statistics were requested, print them out now.    if (llvm::AreStatisticsEnabled())      llvm::PrintStatistics(); +  reportAndResetTimings();  }  | 
