ir3: Drop use of nir_lower_wrmasks().

It gets done by nir_lower_mem_access_bit_sizes that's called right after.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38688>
This commit is contained in:
Emma Anholt 2025-11-26 16:27:03 -08:00 committed by Marge Bot
parent 959520e227
commit f8901bddac

View file

@ -689,8 +689,6 @@ ir3_finalize_nir(struct ir3_compiler *compiler,
NIR_PASS(_, s, nir_lower_frexp);
NIR_PASS(_, s, nir_lower_amul, ir3_glsl_type_size);
OPT(s, nir_lower_wrmasks);
OPT(s, nir_lower_tex, &tex_options);
OPT(s, nir_lower_load_const_to_scalar);
@ -1207,7 +1205,6 @@ ir3_nir_lower_variant(struct ir3_shader_variant *so,
}
/* Lower scratch writemasks */
progress |= OPT(s, nir_lower_wrmasks);
progress |= OPT(s, nir_lower_atomics, atomic_supported);
if (OPT(s, nir_lower_locals_to_regs, 1)) {