mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
fix "Missing break in switch" coverity reports
Many of these are marked as "intentional/fix required" because they just need adding a fall through comment. This is exactly what this patch does, except for target/mips/translate.c where it is easier to duplicate the code, and hw/audio/sb16.c where I consulted the DOSBox sources and decide to just remove the LOG_UNIMP before the fallthrough. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
154c1d1f96
commit
edd7541b8c
10 changed files with 19 additions and 5 deletions
|
@ -4689,6 +4689,7 @@ static target_ulong disas_insn(DisasContext *s, CPUState *cpu)
|
|||
case 0x82:
|
||||
if (CODE64(s))
|
||||
goto illegal_op;
|
||||
/* fall through */
|
||||
case 0x80: /* GRP1 */
|
||||
case 0x81:
|
||||
case 0x83:
|
||||
|
@ -8292,6 +8293,7 @@ static target_ulong disas_insn(DisasContext *s, CPUState *cpu)
|
|||
case 0x10e ... 0x10f:
|
||||
/* 3DNow! instructions, ignore prefixes */
|
||||
s->prefix &= ~(PREFIX_REPZ | PREFIX_REPNZ | PREFIX_DATA);
|
||||
/* fall through */
|
||||
case 0x110 ... 0x117:
|
||||
case 0x128 ... 0x12f:
|
||||
case 0x138 ... 0x13a:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue