diff options
author | Timothy Arceri <[email protected]> | 2020-07-06 13:44:56 +1000 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-08 03:04:03 +0000 |
commit | f35283d32e35cdda709084b844c713f7707f83d0 (patch) | |
tree | e49178ef4049584a8ca9a1317f97a7f63d248703 /src/panfrost/bifrost | |
parent | 7ccf2580638c690bb2661781a06385a6f96e6217 (diff) |
panfrost: add some missing fallthrough comments
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5766>
Diffstat (limited to 'src/panfrost/bifrost')
-rw-r--r-- | src/panfrost/bifrost/disassemble.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index c3b7fe6c413..92fbf20a17f 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -1592,6 +1592,7 @@ static void dump_add(FILE *fp, uint64_t word, struct bifrost_regs regs, } case ADD_LOAD_ATTR: fprintf(fp, "location:%d, ", (ADD.op >> 3) & 0x1f); + /* fallthrough */ case ADD_TWO_SRC: dump_src(fp, ADD.src0, regs, consts, false); fprintf(fp, ", "); @@ -1987,6 +1988,7 @@ bool dump_clause(FILE *fp, uint32_t *words, unsigned *size, unsigned offset, boo // only constants can come after this num_instrs = 1; done = stop; + /* fallthrough */ case 0x5: header_bits = bits(words[2], 19, 32) | ((uint64_t) words[3] << (32 - 19)); main_instr.add_bits |= (tag & 0x7) << 17; |