[llvm] [CodeGen] Fix stale LiveIntervals regmask tables after MachineBasicBl… (PR #209610)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 17 05:58:06 PDT 2026


================
@@ -294,6 +294,27 @@ void LiveIntervals::computeRegMasks() {
   }
 }
 
+void LiveIntervals::reassignRegMaskSlots(MachineBasicBlock *Orig,
+                                         MachineBasicBlock *SplitBB) {
+  assert(Orig && SplitBB && Orig != SplitBB);
----------------
arsenm wrote:

Make the blocks references?

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


More information about the llvm-commits mailing list