mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
pan/mdg: Print mask when dest=0
Forgot this convention differs from Bifrost. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5151>
This commit is contained in:
parent
553c2cf16b
commit
68d2a889b7
1 changed files with 1 additions and 1 deletions
|
|
@ -348,7 +348,7 @@ mir_print_instruction(midgard_instruction *ins)
|
|||
printf(" ");
|
||||
mir_print_index(ins->dest);
|
||||
|
||||
if (ins->dest) {
|
||||
if (ins->dest != ~0) {
|
||||
pan_print_alu_type(ins->dest_type, stdout);
|
||||
mir_print_mask(ins->mask);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue