[llvm] [llvm][CodeGen] Fix the empty interval issue in Window Scheduler(#128714) (PR #129204)

Hua Tian via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 16 19:38:52 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()) {
----------------
huaatian wrote:

Hi, do you see any other modifications needed for this patch? @arsenm 

https://github.com/llvm/llvm-project/pull/129204


More information about the llvm-commits mailing list