[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 19/76] target/avr: Drop R from trans_COM
From: |
Richard Henderson |
Subject: |
[PATCH 19/76] target/avr: Drop R from trans_COM |
Date: |
Fri, 24 Feb 2023 23:13:30 -1000 |
This variable is not used, only allocated and freed.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/avr/translate.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/target/avr/translate.c b/target/avr/translate.c
index e7f0e2bbe3..4f8112c3e6 100644
--- a/target/avr/translate.c
+++ b/target/avr/translate.c
@@ -670,7 +670,6 @@ static bool trans_EOR(DisasContext *ctx, arg_EOR *a)
static bool trans_COM(DisasContext *ctx, arg_COM *a)
{
TCGv Rd = cpu_r[a->rd];
- TCGv R = tcg_temp_new_i32();
tcg_gen_xori_tl(Rd, Rd, 0xff);
@@ -678,9 +677,6 @@ static bool trans_COM(DisasContext *ctx, arg_COM *a)
tcg_gen_movi_tl(cpu_Cf, 1); /* Cf = 1 */
tcg_gen_movi_tl(cpu_Vf, 0); /* Vf = 0 */
gen_ZNSf(Rd);
-
- tcg_temp_free_i32(R);
-
return true;
}
--
2.34.1
- [PATCH 09/76] target/arm: Drop new_tmp_a64_zero, (continued)
- [PATCH 09/76] target/arm: Drop new_tmp_a64_zero, Richard Henderson, 2023/02/25
- [PATCH 11/76] target/arm: Drop tcg_temp_free from translator-m-nocp.c, Richard Henderson, 2023/02/25
- [PATCH 10/76] target/arm: Drop tcg_temp_free from translator-a64.c, Richard Henderson, 2023/02/25
- [PATCH 12/76] target/arm: Drop tcg_temp_free from translator-mve.c, Richard Henderson, 2023/02/25
- [PATCH 13/76] target/arm: Drop tcg_temp_free from translator-neon.c, Richard Henderson, 2023/02/25
- [PATCH 14/76] target/arm: Drop tcg_temp_free from translator-sme.c, Richard Henderson, 2023/02/25
- [PATCH 15/76] target/arm: Drop tcg_temp_free from translator-sve.c, Richard Henderson, 2023/02/25
- [PATCH 16/76] target/arm: Drop tcg_temp_free from translator-vfp.c, Richard Henderson, 2023/02/25
- [PATCH 17/76] target/arm: Drop tcg_temp_free from translator.h, Richard Henderson, 2023/02/25
- [PATCH 18/76] target/avr: Drop DisasContext.free_skip_var0, Richard Henderson, 2023/02/25
- [PATCH 19/76] target/avr: Drop R from trans_COM,
Richard Henderson <=
- [PATCH 20/76] target/avr: Drop tcg_temp_free, Richard Henderson, 2023/02/25
- [PATCH 21/76] target/cris: Drop cris_alu_free_temps, Richard Henderson, 2023/02/25
- [PATCH 22/76] target/cris: Drop cris_alu_m_free_temps, Richard Henderson, 2023/02/25
- [PATCH 23/76] target/cris: Drop addr from dec10_ind_move_m_pr, Richard Henderson, 2023/02/25
- [PATCH 24/76] target/cris: Drop tcg_temp_free, Richard Henderson, 2023/02/25
- [PATCH 25/76] target/cris: Drop tcg_temp_free from C code, Richard Henderson, 2023/02/25
- [PATCH 26/76] target/cris: Drop tcg_temp_free from gen_tcg_funcs.py, Richard Henderson, 2023/02/25
- [PATCH 29/76] target/hppa: Drop tcg_temp_free, Richard Henderson, 2023/02/25