> -----Original Message----- > From: Anton Johansson <[email protected]> > Sent: Monday, February 27, 2023 6:52 AM > To: [email protected] > Cc: [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > Taylor Simpson <[email protected]>; [email protected]; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; [email protected]; > [email protected]; [email protected]; mark.cave- > [email protected]; [email protected]; [email protected] > paderborn.de > Subject: [PATCH v3 24/27] target/hexagon: Replace `tb_pc()` with `tb->pc` > > Signed-off-by: Anton Johansson <[email protected]> > Reviewed-by: Philippe Mathieu-Daudé <[email protected]> > --- > target/hexagon/cpu.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/target/hexagon/cpu.c b/target/hexagon/cpu.c index > 807037c586..ab40cfc283 100644 > --- a/target/hexagon/cpu.c > +++ b/target/hexagon/cpu.c > @@ -23,6 +23,7 @@ > #include "qapi/error.h" > #include "hw/qdev-properties.h" > #include "fpu/softfloat-helpers.h" > +#include "tcg/tcg.h" > > static void hexagon_v67_cpu_init(Object *obj) { @@ -263,7 +264,8 @@ > static void hexagon_cpu_synchronize_from_tb(CPUState *cs, { > HexagonCPU *cpu = HEXAGON_CPU(cs); > CPUHexagonState *env = &cpu->env; > - env->gpr[HEX_REG_PC] = tb_pc(tb); > + tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL)); > + env->gpr[HEX_REG_PC] = tb->pc; > }
Reviewed-by: Taylor Simpson <[email protected]>
