Re: [Qemu-devel] [PATCH 05/67] target/arm: Use the saved value of the insn address

2019-07-29 Thread Peter Maydell
On Fri, 26 Jul 2019 at 18:50, Richard Henderson wrote: > > The address of the current insn is still available in s->base.pc_next, > and need not be recomputed from s->pc - 4. > > Signed-off-by: Richard Henderson > --- > target/arm/translate.c | 12 ++-- > 1 file changed, 6 insertions(+),

[Qemu-devel] [PATCH 05/67] target/arm: Use the saved value of the insn address

2019-07-26 Thread Richard Henderson
The address of the current insn is still available in s->base.pc_next, and need not be recomputed from s->pc - 4. Signed-off-by: Richard Henderson --- target/arm/translate.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/target/arm/translate.c b/target/arm/trans