broadcom/compiler: relax restriction on VPM inst in last thread end slot

According to the documentation, only vpmwt is disallowed in the last delay
slot of the thread end.

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13975>
This commit is contained in:
Iago Toral Quiroga 2021-11-29 12:39:24 +01:00 committed by Marge Bot
parent 57969c6dad
commit 996f147fef

View file

@ -1509,7 +1509,7 @@ qpu_inst_valid_in_thrend_slot(struct v3d_compile *c,
if (slot > 0 && qinst->uniform != ~0)
return false;
if (v3d_qpu_uses_vpm(inst))
if (v3d_qpu_waits_vpm(inst))
return false;
if (inst->sig.ldvary)