[llvm] [llvm][CodeGen] update live intervals for ModuloScheduleExpanderMVE (PR #132677)
Hua Tian via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 02:30:20 PDT 2025
================
@@ -404,6 +405,9 @@ class ModuloScheduleExpanderMVE {
/// NumUnroll = 1 means no unrolling.
int NumUnroll;
+ /// Record the registers that need to compute live intervals.
+ SmallSet<Register, 8> NewVRegs;
----------------
huaatian wrote:
I see. SmallVector is indeed more suitable for use here.
Updated.
https://github.com/llvm/llvm-project/pull/132677
More information about the llvm-commits
mailing list