From ab5cc3e717dc7cfe26127cb206b5305fb8a35f45 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sat, 19 Sep 2020 14:53:15 -0400 Subject: [PATCH] pan/bi: Annotate stop bit (canonically "Z-bit") Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/disassemble.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index 5691af5eefe..9894363af20 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -446,6 +446,7 @@ static bool dump_clause(FILE *fp, uint32_t *words, unsigned *size, unsigned offs uint64_t const0 = bits(words[0], 8, 32) << 4 | (uint64_t) words[1] << 28 | bits(words[2], 0, 4) << 60; uint64_t const1 = bits(words[2], 4, 32) << 4 | (uint64_t) words[3] << 32; + /* Z-bit */ bool stop = tag & 0x40; if (verbose) {