aco: Print block_kind_export_end.

Useful when debugging issues with exports.

Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3576>
This commit is contained in:
Timur Kristóf 2020-01-27 08:16:29 +01:00 committed by Marge Bot
parent b9cbdb6a45
commit 90b1047fdf

View file

@ -689,6 +689,8 @@ static void print_block_kind(uint16_t kind, FILE *output)
fprintf(output, "needs_lowering, ");
if (kind & block_kind_uses_demote)
fprintf(output, "uses_demote, ");
if (kind & block_kind_export_end)
fprintf(output, "export_end, ");
}
void aco_print_block(const struct Block* block, FILE *output)