From: Alyssa Rosenzweig Date: Sat, 7 Mar 2020 00:27:25 +0000 (-0500) Subject: pan/bi: Rename next-wait to simply 'wait' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b0be49005bf7d66d8f8fc8a9bb39dd5e29ab243;p=mesa.git pan/bi: Rename next-wait to simply 'wait' next-wait is from a quirk of packing that the dependency indices are "off by one"; we don't emulate this quirk in the IR since it's easy enough to patch over in the disassembler. Let's not confuse anybody with it. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/bi_print.c b/src/panfrost/bifrost/bi_print.c index 863e894606c..cd266a9b00f 100644 --- a/src/panfrost/bifrost/bi_print.c +++ b/src/panfrost/bifrost/bi_print.c @@ -361,7 +361,7 @@ bi_print_clause(bi_clause *clause, FILE *fp) fprintf(fp, "\tid(%u)", clause->scoreboard_id); if (clause->dependencies) { - fprintf(fp, ", next-wait("); + fprintf(fp, ", wait("); for (unsigned i = 0; i < 8; ++i) { if (clause->dependencies & (1 << i))