mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
ir3: Fix printing branch type
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13142>
This commit is contained in:
parent
b516208a55
commit
8fb99b58df
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue