mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 13:10:10 +01:00
aco: Update printed block kinds
Two were missing. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26103>
This commit is contained in:
parent
073b876539
commit
02942d6e7e
1 changed files with 4 additions and 0 deletions
|
|
@ -856,8 +856,12 @@ print_block_kind(uint16_t kind, FILE* output)
|
|||
fprintf(output, "invert, ");
|
||||
if (kind & block_kind_uses_discard)
|
||||
fprintf(output, "discard, ");
|
||||
if (kind & block_kind_resume)
|
||||
fprintf(output, "resume, ");
|
||||
if (kind & block_kind_export_end)
|
||||
fprintf(output, "export_end, ");
|
||||
if (kind & block_kind_end_with_regs)
|
||||
fprintf(output, "end_with_regs, ");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue