Re: [PATCH 62/70] target/xtensa: Tidy translate_bb

2023-03-06 Thread Philippe Mathieu-Daudé
On 27/2/23 06:42, Richard Henderson wrote: Replace ifdefs with C, tcg_const_i32 with tcg_constant_i32. We only need a single temporary for this. Signed-off-by: Richard Henderson --- target/xtensa/translate.c | 18 +++--- 1 file changed, 7 insertions(+), 11 deletions(-) Reviewed

Re: [PATCH 62/70] target/xtensa: Tidy translate_bb

2023-02-27 Thread Max Filippov
On Sun, Feb 26, 2023 at 9:48 PM Richard Henderson wrote: > > Replace ifdefs with C, tcg_const_i32 with tcg_constant_i32. > We only need a single temporary for this. > > Signed-off-by: Richard Henderson > --- > target/xtensa/translate.c | 18 +++--- > 1 file changed, 7 insertions(+),

[PATCH 62/70] target/xtensa: Tidy translate_bb

2023-02-27 Thread Richard Henderson
Replace ifdefs with C, tcg_const_i32 with tcg_constant_i32. We only need a single temporary for this. Signed-off-by: Richard Henderson --- target/xtensa/translate.c | 18 +++--- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/target/xtensa/translate.c b/target/xtensa/t