[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
Tue Mar 11 10:16:44 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:
Double map lookup on VRMap[CurStageNum]
https://github.com/llvm/llvm-project/pull/129204
More information about the llvm-commits
mailing list