diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-03-06 19:27:25 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-07 00:37:39 +0000 |
commit | 0b0be49005bf7d66d8f8fc8a9bb39dd5e29ab243 (patch) | |
tree | a4bdf22dd1919ce5ee6fe66bb0037bb088330abc /src | |
parent | b329f8c750af96f9efb968045dcf03b0fad1b34e (diff) |
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 <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4097>
Diffstat (limited to 'src')
-rw-r--r-- | src/panfrost/bifrost/bi_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |