Re: [PATCH 1/2] target/ppc: Use tcg_constant_i32() in gen_setb()

2021-10-04 Thread David Gibson
On Sun, Oct 03, 2021 at 04:17:10PM +0200, Philippe Mathieu-Daudé wrote: > Avoid using TCG temporaries for the -1 and 8 constant values. > > Signed-off-by: Philippe Mathieu-Daudé Both patches applied to ppc-for-6.2, thanks. > --- > target/ppc/translate.c | 8 ++-- > 1 file changed, 2 insert

Re: [PATCH 1/2] target/ppc: Use tcg_constant_i32() in gen_setb()

2021-10-03 Thread Richard Henderson
On 10/3/21 10:17 AM, Philippe Mathieu-Daudé wrote: Avoid using TCG temporaries for the -1 and 8 constant values. Signed-off-by: Philippe Mathieu-Daudé --- target/ppc/translate.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) Reviewed-by: Richard Henderson r~

[PATCH 1/2] target/ppc: Use tcg_constant_i32() in gen_setb()

2021-10-03 Thread Philippe Mathieu-Daudé
Avoid using TCG temporaries for the -1 and 8 constant values. Signed-off-by: Philippe Mathieu-Daudé --- target/ppc/translate.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/target/ppc/translate.c b/target/ppc/translate.c index b985e9e55bc..193d8e89152 100644 --- a/t