[PATCH 25/27] exec/gen-icount: Don't use tcg_temp_local_new_i32

Richard Henderson posted 27 patches 1 year, 7 months ago
There is a newer version of this series
[PATCH 25/27] exec/gen-icount: Don't use tcg_temp_local_new_i32
Posted by Richard Henderson 1 year, 7 months ago
Since tcg_temp_new_i32 is now identical, use that.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 include/exec/gen-icount.h | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/include/exec/gen-icount.h b/include/exec/gen-icount.h
index c57204ddad..21a1bff8b7 100644
--- a/include/exec/gen-icount.h
+++ b/include/exec/gen-icount.h
@@ -19,13 +19,7 @@ static inline void gen_io_start(void)
 
 static inline void gen_tb_start(const TranslationBlock *tb)
 {
-    TCGv_i32 count;
-
-    if (tb_cflags(tb) & CF_USE_ICOUNT) {
-        count = tcg_temp_local_new_i32();
-    } else {
-        count = tcg_temp_new_i32();
-    }
+    TCGv_i32 count = tcg_temp_new_i32();
 
     tcg_gen_ld_i32(count, cpu_env,
                    offsetof(ArchCPU, neg.icount_decr.u32) -
-- 
2.34.1
Re: [PATCH 25/27] exec/gen-icount: Don't use tcg_temp_local_new_i32
Posted by Philippe Mathieu-Daudé 1 year, 7 months ago
On 30/1/23 21:59, Richard Henderson wrote:
> Since tcg_temp_new_i32 is now identical, use that.
> 
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>   include/exec/gen-icount.h | 8 +-------
>   1 file changed, 1 insertion(+), 7 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>