pan/bi: Don't print types for unconditional branches

There's nothing to type!

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4097>
This commit is contained in:
Alyssa Rosenzweig 2020-03-05 16:30:58 -05:00 committed by Marge Bot
parent 5c7ee8a974
commit 2e9b5f8ef4
1 changed files with 5 additions and 3 deletions

View File

@ -317,9 +317,11 @@ bi_print_instruction(bi_instruction *ins, FILE *fp)
if (bi_is_src_swizzled(ins, s))
bi_print_swizzle(ins, fp);
if (ins->type == BI_CONVERT && s == 0)
bi_print_alu_type(ins->src_types[s], fp);
else if ((ins->type == BI_BRANCH || ins->type == BI_CSEL) && s < 2)
bool is_convert = ins->type == BI_CONVERT && s == 0;
bool is_branch = ins->type == BI_BRANCH && s < 2 && ins->branch.cond != BI_COND_ALWAYS;
bool is_csel = ins->type == BI_CSEL && s < 2;
if (is_convert || is_branch || is_csel)
bi_print_alu_type(ins->src_types[s], fp);
if (s < BIR_SRC_COUNT)