aco: update VALUReadSGPRHazard comment

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35387>
This commit is contained in:
Rhys Perry
2025-06-06 17:58:13 +01:00
committed by Marge Bot
parent a714a19e16
commit 00dd0d0dd1
+1 -1
View File
@@ -1553,7 +1553,7 @@ handle_instruction_gfx11(State& state, NOP_ctx_gfx11& ctx, aco_ptr<Instruction>&
}
} else {
/* VALUReadSGPRHazard
* VALU reads SGPR and later written by SALU cannot safely be read by VALU/SALU.
* VALU reads SGPR and later written by VALU/SALU cannot safely be read by VALU/SALU.
*/
if (instr->isVALU() || instr->isSALU()) {
unsigned expiry_count = instr->isSALU() ? 10 : 11;