mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 17:40:11 +01:00
v3d: handle ldtlb and ldtlbu signals during disassembly
We already have code to print these signals but the early return in the code that checks if any signals are present present was missing the checks for them, so it would skip printing them unless they were paired with other signals. Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
958ee4c21a
commit
271bc8acfb
1 changed files with 2 additions and 0 deletions
|
|
@ -205,6 +205,8 @@ v3d_qpu_disasm_sig(struct disasm_state *disasm,
|
||||||
!sig->ldvary &&
|
!sig->ldvary &&
|
||||||
!sig->ldvpm &&
|
!sig->ldvpm &&
|
||||||
!sig->ldtmu &&
|
!sig->ldtmu &&
|
||||||
|
!sig->ldtlb &&
|
||||||
|
!sig->ldtlbu &&
|
||||||
!sig->ldunif &&
|
!sig->ldunif &&
|
||||||
!sig->ldunifrf &&
|
!sig->ldunifrf &&
|
||||||
!sig->ldunifa &&
|
!sig->ldunifa &&
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue