From 2e9b5f8ef4b80e57c9653fcdc5e0867e9dd338a6 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Thu, 5 Mar 2020 16:30:58 -0500 Subject: [PATCH] pan/bi: Don't print types for unconditional branches There's nothing to type! Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/bi_print.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/panfrost/bifrost/bi_print.c b/src/panfrost/bifrost/bi_print.c index 81b0f4aa0fc..68cbbedbb82 100644 --- a/src/panfrost/bifrost/bi_print.c +++ b/src/panfrost/bifrost/bi_print.c @@ -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) -- 2.30.2