From: Philippe Mathieu-Daudé Date: Fri, 4 Oct 2024 18:58:29 +0000 (-0300) Subject: target/tricore: Use tcg_constant_tl() instead of tcg_gen_movi_tl() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=96ce24da684454b2f8c86c9b47ee703ecf194cc0;p=qemu.git target/tricore: Use tcg_constant_tl() instead of tcg_gen_movi_tl() Directly use tcg_constant_tl() for constant integer, this save a call to tcg_gen_movi_tl(). Inspired-by: Richard Henderson Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20241004202621.4321-3-philmd@linaro.org> --- diff --git a/target/tricore/translate.c b/target/tricore/translate.c index a46a03e1fd..4a12d2ca19 100644 --- a/target/tricore/translate.c +++ b/target/tricore/translate.c @@ -2732,8 +2732,7 @@ static inline void gen_insert(TCGv ret, TCGv r1, TCGv r2, TCGv width, TCGv pos) TCGv temp = tcg_temp_new(); TCGv temp2 = tcg_temp_new(); - tcg_gen_movi_tl(mask, 1); - tcg_gen_shl_tl(mask, mask, width); + tcg_gen_shl_tl(mask, tcg_constant_tl(1), width); tcg_gen_subi_tl(mask, mask, 1); tcg_gen_shl_tl(mask, mask, pos);