Re: [PATCH-for-8.0 1/3] tcg/s390x: Fix coding style

2022-11-30 Thread Richard Henderson
On 11/30/22 05:26, Philippe Mathieu-Daudé wrote: We are going to modify this code, so fix its style first to avoid: ERROR: spaces required around that '*' (ctx:VxV) #281: FILE: tcg/s390x/tcg-target.c.inc:1224: +uintptr_t mask = ~(0xull << i*16);

Re: [PATCH-for-8.0 1/3] tcg/s390x: Fix coding style

2022-11-30 Thread Wilfred Mallawa
On Wed, 2022-11-30 at 14:26 +0100, Philippe Mathieu-Daudé wrote: > We are going to modify this code, so fix its style first to avoid: > >   ERROR: spaces required around that '*' (ctx:VxV) >   #281: FILE: tcg/s390x/tcg-target.c.inc:1224: >   +    uintptr_t mask = ~(0xull << i*16); >   

[PATCH-for-8.0 1/3] tcg/s390x: Fix coding style

2022-11-30 Thread Philippe Mathieu-Daudé
We are going to modify this code, so fix its style first to avoid: ERROR: spaces required around that '*' (ctx:VxV) #281: FILE: tcg/s390x/tcg-target.c.inc:1224: +uintptr_t mask = ~(0xull << i*16); ^ Signed-off-by: Philippe Mathieu-Daud