mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
target-mips/translate.c: Free TCG in OPC_DINSV
Free t0 and t1 in opcode OPC_DINSV. Signed-off-by: Dongxue Zhang <elta.era@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
f45c56e016
commit
62eb3b9a34
@ -15300,6 +15300,9 @@ static void decode_opc (CPUMIPSState *env, DisasContext *ctx)
|
||||
gen_load_gpr(t1, rs);
|
||||
|
||||
gen_helper_dinsv(cpu_gpr[rt], cpu_env, t1, t0);
|
||||
|
||||
tcg_temp_free(t0);
|
||||
tcg_temp_free(t1);
|
||||
break;
|
||||
}
|
||||
default: /* Invalid */
|
||||
|
Loading…
Reference in New Issue
Block a user