Re: [PATCH v3 05/14] target/ppc: Remove some more local CPUState variables only used once

2023-06-19 Thread Nicholas Piggin
On Fri Jun 16, 2023 at 9:03 AM AEST, BALATON Zoltan wrote: > Some helpers only have a CPUState local to call cpu_interrupt_exittb() > but we can use env_cpu for that and remove the local. > > Signed-off-by: BALATON Zoltan I have less issue with this one. Acked-by: Nicholas Piggin > --- >

[PATCH v3 05/14] target/ppc: Remove some more local CPUState variables only used once

2023-06-15 Thread BALATON Zoltan
Some helpers only have a CPUState local to call cpu_interrupt_exittb() but we can use env_cpu for that and remove the local. Signed-off-by: BALATON Zoltan --- target/ppc/excp_helper.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/target/ppc/excp_helper.c