From 0b0be49005bf7d66d8f8fc8a9bb39dd5e29ab243 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 6 Mar 2020 19:27:25 -0500 Subject: [PATCH] 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: --- src/panfrost/bifrost/bi_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.30.2