mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 01:45:31 +00:00
target/mips: Add missing 'break' for a case of MTHC0 handling
This was found by GCC 8.3 static analysis. Fixes: 5fb2dcd1792 Backports commit ab8c34105a0ddd0c05159fb76919a18de8df4e8f from qemu
This commit is contained in:
parent
cdb9422f3a
commit
b2aa75be33
|
@ -6827,6 +6827,7 @@ static void gen_mthc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
default:
|
||||
goto cp0_unimplemented;
|
||||
}
|
||||
break;
|
||||
case CP0_REGISTER_17:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
|
|
Loading…
Reference in a new issue