ir3: Fix printing branch type

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13142>
This commit is contained in:
Connor Abbott 2021-09-24 19:00:22 +02:00 committed by Marge Bot
parent b516208a55
commit 8fb99b58df

View file

@ -484,13 +484,13 @@ print_block(struct ir3_block *block, int lvl)
case IR3_BRANCH_COND:
break;
case IR3_BRANCH_ANY:
printf("any ");
mesa_log_stream_printf(stream, "any ");
break;
case IR3_BRANCH_ALL:
printf("all ");
mesa_log_stream_printf(stream, "all ");
break;
case IR3_BRANCH_GETONE:
printf("getone ");
mesa_log_stream_printf(stream, "getone ");
break;
}
if (block->condition)