mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
-dspp: Fix erroneous fallthroughs. [Ryan Holtz]
This commit is contained in:
parent
4298ce18fb
commit
1dda9fb3db
@ -86,13 +86,14 @@ bool dspp_frontend::describe(opcode_desc &desc, const opcode_desc *prev)
|
||||
{
|
||||
case 0:
|
||||
describe_special(op, desc);
|
||||
[[fallthrough]]; // FIXME: really?
|
||||
break;
|
||||
case 1:
|
||||
case 2:
|
||||
describe_branch(op, desc);
|
||||
[[fallthrough]]; // FIXME: really?
|
||||
break;
|
||||
case 3:
|
||||
describe_complex_branch(op, desc);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user