r600/sfn: remove extra slot of AR use

Since we split the address load the extra slot reservation
for an address register load is no longer needed.

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36742>
This commit is contained in:
Gert Wollny
2025-08-11 14:57:34 +02:00
committed by Marge Bot
parent 5d0f212d81
commit b0468b5560
@@ -497,12 +497,6 @@ AluGroup::slots() const
if (m_slots[i])
++result;
}
if (m_addr_used) {
++result;
if (m_addr_is_index && s_max_slots == 5)
++result;
}
return result;
}