Re: [PATCH 01/10] hw/arm/realview: Simplify using 'break' statement

2023-05-25 Thread Peter Maydell
On Wed, 24 May 2023 at 20:01, Richard Henderson wrote: > > On 5/24/23 07:58, Philippe Mathieu-Daudé wrote: > > The 'break' statement terminates the execution of the nearest > > enclosing 'for' statement in which it appears. > > > > Signed-off-by: Philippe Mathieu-Daudé > > --- > > hw/arm/realvi

Re: [PATCH 01/10] hw/arm/realview: Simplify using 'break' statement

2023-05-24 Thread Richard Henderson
On 5/24/23 07:58, Philippe Mathieu-Daudé wrote: The 'break' statement terminates the execution of the nearest enclosing 'for' statement in which it appears. Signed-off-by: Philippe Mathieu-Daudé --- hw/arm/realview.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/h

[PATCH 01/10] hw/arm/realview: Simplify using 'break' statement

2023-05-24 Thread Philippe Mathieu-Daudé
The 'break' statement terminates the execution of the nearest enclosing 'for' statement in which it appears. Signed-off-by: Philippe Mathieu-Daudé --- hw/arm/realview.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hw/arm/realview.c b/hw/arm/realview.c index a5aa2f046