mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
Jit64: Indicate explicit [[fallthrough]] within load helper
This commit is contained in:
parent
e1dfcda8a6
commit
adebc499f9
1 changed files with 2 additions and 0 deletions
|
@ -74,6 +74,7 @@ void Jit64::lXXx(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
case 534: // lwbrx
|
case 534: // lwbrx
|
||||||
byte_reversed = true;
|
byte_reversed = true;
|
||||||
|
[[fallthrough]];
|
||||||
case 23: // lwzx
|
case 23: // lwzx
|
||||||
case 55: // lwzux
|
case 55: // lwzux
|
||||||
accessSize = 32;
|
accessSize = 32;
|
||||||
|
@ -87,6 +88,7 @@ void Jit64::lXXx(UGeckoInstruction inst)
|
||||||
break;
|
break;
|
||||||
case 790: // lhbrx
|
case 790: // lhbrx
|
||||||
byte_reversed = true;
|
byte_reversed = true;
|
||||||
|
[[fallthrough]];
|
||||||
case 279: // lhzx
|
case 279: // lhzx
|
||||||
case 311: // lhzux
|
case 311: // lhzux
|
||||||
accessSize = 16;
|
accessSize = 16;
|
||||||
|
|
Loading…
Add table
Reference in a new issue