Re: [PATCH v4 03/17] target/m68k: Fix coding style in m68k_interrupt_all

2022-05-25 Thread Laurent Vivier
Le 30/04/2022 à 19:53, Richard Henderson a écrit : Add parenthesis around & vs &&. Remove assignment to sr in function call argument -- note that sr is unused after the call, so the assignment was never needed, only the result of the & expression. Suggested-by: Philippe Mathieu-Daudé

Re: [PATCH v4 03/17] target/m68k: Fix coding style in m68k_interrupt_all

2022-05-22 Thread Philippe Mathieu-Daudé via
On 30/4/22 19:53, Richard Henderson wrote: Add parenthesis around & vs &&. Remove assignment to sr in function call argument -- note that sr is unused after the call, so the assignment was never needed, only the result of the & expression. Suggested-by: Philippe Mathieu-Daudé Signed-off-by:

[PATCH v4 03/17] target/m68k: Fix coding style in m68k_interrupt_all

2022-04-30 Thread Richard Henderson
Add parenthesis around & vs &&. Remove assignment to sr in function call argument -- note that sr is unused after the call, so the assignment was never needed, only the result of the & expression. Suggested-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson ---