aco: Update printed block kinds

Two were missing.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26103>
This commit is contained in:
Friedrich Vock 2023-11-07 15:00:46 +01:00 committed by Marge Bot
parent 073b876539
commit 02942d6e7e

View file

@ -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