From: Anton Johansson Date: Mon, 27 Feb 2023 13:52:01 +0000 (+0100) Subject: target/arm: Replace `tb_pc()` with `tb->pc` X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f51a1dd72f5ee0714d2258e3f53b6b2471074c1a;p=qemu.git target/arm: Replace `tb_pc()` with `tb->pc` Signed-off-by: Anton Johansson Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20230227135202.9710-27-anjo@rev.ng> Signed-off-by: Richard Henderson --- diff --git a/target/arm/cpu.c b/target/arm/cpu.c index 850b018efb..5182ed0c91 100644 --- a/target/arm/cpu.c +++ b/target/arm/cpu.c @@ -86,9 +86,9 @@ void arm_cpu_synchronize_from_tb(CPUState *cs, * never possible for an AArch64 TB to chain to an AArch32 TB. */ if (is_a64(env)) { - env->pc = tb_pc(tb); + env->pc = tb->pc; } else { - env->regs[15] = tb_pc(tb); + env->regs[15] = tb->pc; } } }