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:
Alyssa Rosenzweig 2020-05-11 12:56:43 -04:00 committed by Marge Bot
parent 553c2cf16b
commit 68d2a889b7

View file

@ -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);
}