From: Richard Henderson Date: Sat, 25 Feb 2023 05:30:25 +0000 (-1000) Subject: target/mips: Drop tcg_temp_free from translate_addr_const.c X-Git-Tag: v8.0.0-rc0~4^2~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe5360215c5ae8034210d2e14f6fcbe4248d6f98;p=thirdparty%2Fqemu.git target/mips: Drop tcg_temp_free from translate_addr_const.c Translators are no longer required to free tcg temporaries. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/target/mips/tcg/translate_addr_const.c b/target/mips/tcg/translate_addr_const.c index 96f483418eb..a510da406c9 100644 --- a/target/mips/tcg/translate_addr_const.c +++ b/target/mips/tcg/translate_addr_const.c @@ -30,10 +30,6 @@ bool gen_lsa(DisasContext *ctx, int rd, int rt, int rs, int sa) tcg_gen_shli_tl(t0, t0, sa + 1); tcg_gen_add_tl(cpu_gpr[rd], t0, t1); tcg_gen_ext32s_tl(cpu_gpr[rd], cpu_gpr[rd]); - - tcg_temp_free(t1); - tcg_temp_free(t0); - return true; } @@ -54,8 +50,5 @@ bool gen_dlsa(DisasContext *ctx, int rd, int rt, int rs, int sa) gen_load_gpr(t1, rt); tcg_gen_shli_tl(t0, t0, sa + 1); tcg_gen_add_tl(cpu_gpr[rd], t0, t1); - tcg_temp_free(t1); - tcg_temp_free(t0); - return true; }