Re: [PATCH] target/ppc: Remove superfluous breaks

2020-07-14 Thread Richard Henderson
On 7/12/20 5:33 PM, Yi Wang wrote: > From: Liao Pingfang > > Remove superfluous breaks, as there is a "return" before them. > > Signed-off-by: Liao Pingfang > --- > target/ppc/misc_helper.c | 5 - > 1 file changed, 5 deletions(-) Cc: qemu-trivial Reviewed-by: Richard Henderson r~

[PATCH] target/ppc: Remove superfluous breaks

2020-07-12 Thread Yi Wang
From: Liao Pingfang Remove superfluous breaks, as there is a "return" before them. Signed-off-by: Liao Pingfang --- target/ppc/misc_helper.c | 5 - 1 file changed, 5 deletions(-) diff --git a/target/ppc/misc_helper.c b/target/ppc/misc_helper.c index 55b68d1..e43a3b4 100644 --- a/target/pp