From d136788f76fd0eb9c9742835618177f338696a07 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Fri, 24 Feb 2023 22:10:35 -1000 Subject: [PATCH] include/exec/gen-icount: Drop tcg_temp_free in gen_tb_start Translators are no longer required to free tcg temporaries. Reviewed-by: Peter Maydell Signed-off-by: Richard Henderson --- include/exec/gen-icount.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/exec/gen-icount.h b/include/exec/gen-icount.h index aff35d69827..f6de79a6b4e 100644 --- a/include/exec/gen-icount.h +++ b/include/exec/gen-icount.h @@ -61,8 +61,6 @@ static inline void gen_tb_start(const TranslationBlock *tb) offsetof(ArchCPU, parent_obj.can_do_io) - offsetof(ArchCPU, env)); } - - tcg_temp_free_i32(count); } static inline void gen_tb_end(const TranslationBlock *tb, int num_insns) -- 2.39.5