Skip to content

Commit

Permalink
Fix build failure for [CGData][ThinLTO] Global Outlining with Two-Cod…
Browse files Browse the repository at this point in the history
…eGen Rounds (#90933)
  • Loading branch information
kyulee-com committed Oct 9, 2024
1 parent a797144 commit e547d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/LTO/LTO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2084,7 +2084,7 @@ Error LTO::runThinLTO(AddStreamFn AddStream, FileCache Cache,
LLVM_DEBUG(dbgs() << "[TwoRounds] Running the second round of codegen\n");
auto SecondRoundLTO = std::make_unique<SecondRoundThinBackend>(
Conf, ThinLTO.CombinedIndex, Parallelism, ModuleToDefinedGVSummaries,
AddStream, Cache, std::move(IR.getResult()), CombinedHash);
AddStream, Cache, IR.getResult(), CombinedHash);
return RunBackends(SecondRoundLTO.get());
}

Expand Down

0 comments on commit e547d04

Please sign in to comment.