pan/bi: Minor styling cleanup in disasm

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8139>
This commit is contained in:
Alyssa Rosenzweig 2020-12-16 15:15:17 -05:00 committed by Marge Bot
parent 15558873f4
commit 8db0775f45
1 changed files with 3 additions and 2 deletions

View File

@ -698,9 +698,10 @@ void disassemble_bifrost(FILE *fp, uint8_t *code, size_t size, bool verbose)
while (words != words_end) {
fprintf(fp, "clause_%d:\n", offset);
unsigned size;
if (dump_clause(fp, words, &size, offset, verbose) == true) {
if (dump_clause(fp, words, &size, offset, verbose))
break;
}
words += size * 4;
offset += size;
}