diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-02-24 19:36:03 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-03-13 06:42:05 -0700 |
commit | cd9f2953a09abc8f81bb6a872a6f2b5899fdcfd8 (patch) | |
tree | 7feaa34546107e6631bac6c1f062f8c00a479cfb /target | |
parent | e9f27b36932a8f7fa0fa652f0f2575fcfe90b3cc (diff) |
target/mips: Drop tcg_temp_free from vr54xx_translate.c
Translators are no longer required to free tcg temporaries.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/mips/tcg/vr54xx_translate.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target/mips/tcg/vr54xx_translate.c b/target/mips/tcg/vr54xx_translate.c index a7d241e4e7..804672f84c 100644 --- a/target/mips/tcg/vr54xx_translate.c +++ b/target/mips/tcg/vr54xx_translate.c @@ -49,10 +49,6 @@ static bool trans_mult_acc(DisasContext *ctx, arg_r *a, gen_helper_mult_acc(t0, cpu_env, t0, t1); gen_store_gpr(t0, a->rd); - - tcg_temp_free(t0); - tcg_temp_free(t1); - return true; } |