[llvm] [llvm][CodeGen] Fix the empty interval issue in Window Scheduler(#128714) (PR #129204)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 01:19:39 PDT 2025
================
@@ -601,8 +611,10 @@ void ModuloScheduleExpander::generateExistingPhis(
// scheduling.
if (NumStages == 0 && IsLast) {
auto It = VRMap[CurStageNum].find(LoopVal);
- if (It != VRMap[CurStageNum].end())
- replaceRegUsesAfterLoop(Def, It->second, BB, MRI, LIS);
+ if (It != VRMap[CurStageNum].end()) {
----------------
arsenm wrote:
It's still a DenseMap, just use the temporary reference to avoid it
https://github.com/llvm/llvm-project/pull/129204
More information about the llvm-commits
mailing list