d33a44702c
Followup to #19978: the const-int-bound modular-set fix correctly prevents the simplifier from over-folding the adaptive pool window extent. The previous expected IR used the simplified closed form `(v_ax2 % 3 * 4 + 16) // 12 + 1`, which was only reachable because the buggy bound let `CanProve` prove an invalid predicate. After the fix the generated IR retains the correct `T.Select` form, so update the expected IR to match and remove the `xfail` marker that was added in #19978. This branch is based on current main so the `xfail` removal is explicit (addressing feedback from @tlopex on the previous attempt in #19995).