target/mips: Mark switch fallthroughs with interpretable comments
commit146dd620db815558938433eb9f57a571d424d2c6
authorAleksandar Markovic <amarkovic@wavecomp.com>
Thu, 2 Aug 2018 14:15:50 +0000 (2 16:15 +0200)
committerAleksandar Markovic <amarkovic@wavecomp.com>
Thu, 16 Aug 2018 17:18:45 +0000 (16 19:18 +0200)
tree7d4ce93fdeec5bb28886e7f511cb70d4d02ea53f
parentc38a1d52233c85976eeed99c9015e881de8cd68e
target/mips: Mark switch fallthroughs with interpretable comments

Mark switch fallthroughs with comments, in cases fallthroughs
are intentional.

The comments "/* fall through */" are interpreted by compilers and
other tools, and they will not issue warnings in such cases. For gcc,
the warning is turnend on by -Wimplicit-fallthrough. With this patch,
there will be no such warnings in target/mips directory. If such
warning appears in future, it should be checked if it is intentional,
and, if yes, marked with a comment similar to those from this patch.

The comment must be just before next "case", otherwise gcc won't
understand it.

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
target/mips/translate.c