mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 13:31:52 -06: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
1 changed files with 3 additions and 0 deletions
|
@ -15300,6 +15300,9 @@ static void decode_opc (CPUMIPSState *env, DisasContext *ctx)
|
||||||
gen_load_gpr(t1, rs);
|
gen_load_gpr(t1, rs);
|
||||||
|
|
||||||
gen_helper_dinsv(cpu_gpr[rt], cpu_env, t1, t0);
|
gen_helper_dinsv(cpu_gpr[rt], cpu_env, t1, t0);
|
||||||
|
|
||||||
|
tcg_temp_free(t0);
|
||||||
|
tcg_temp_free(t1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: /* Invalid */
|
default: /* Invalid */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue