mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 10:20:49 +00:00
Remove a useless switch
This commit is contained in:
parent
5ac0cfc721
commit
83b8b23e40
@ -599,15 +599,10 @@ static bool DisasmNeonF2F3(uint32_t op, char *text) {
|
||||
}
|
||||
return DisasmArithNeon(op, opname, text, includeSuffix);
|
||||
case 0x31:
|
||||
temp = (op >> 4) & 0xF1;
|
||||
switch (temp) {
|
||||
default:
|
||||
if (op & 0x100)
|
||||
opname = "MLS";
|
||||
else
|
||||
opname = "SUB";
|
||||
break;
|
||||
}
|
||||
if (op & 0x100)
|
||||
opname = "MLS";
|
||||
else
|
||||
opname = "SUB";
|
||||
return DisasmArithNeon(op, opname, text);
|
||||
case 0x30:
|
||||
case 0x34:
|
||||
|
Loading…
Reference in New Issue
Block a user