mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +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:
|
case 0:
|
||||||
describe_special(op, desc);
|
describe_special(op, desc);
|
||||||
[[fallthrough]]; // FIXME: really?
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
describe_branch(op, desc);
|
describe_branch(op, desc);
|
||||||
[[fallthrough]]; // FIXME: really?
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
describe_complex_branch(op, desc);
|
describe_complex_branch(op, desc);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user