nir/lower-amul: Comment fix

Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37063>
This commit is contained in:
Rob Clark 2025-09-01 09:25:08 -07:00 committed by Marge Bot
parent 55d77749ed
commit d5a8233598

View file

@ -153,12 +153,12 @@ lower_intrinsic(lower_state *state, nir_intrinsic_instr *intr)
case nir_intrinsic_global_atomic_swap:
case nir_intrinsic_load_global_constant:
case nir_intrinsic_load_global:
/* just assume we that 24b is not sufficient: */
/* just assume that 24b is not sufficient: */
lower_large_src(&intr->src[0], state);
return;
case nir_intrinsic_store_global:
/* just assume we that 24b is not sufficient: */
/* just assume that 24b is not sufficient: */
lower_large_src(&intr->src[1], state);
return;