target/avr: Replace tb_pc()
with tb->pc
Signed-off-by: Anton Johansson <anjo@rev.ng> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230227135202.9710-26-anjo@rev.ng> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
ba44565588
commit
604b66ce5e
@ -54,7 +54,8 @@ static void avr_cpu_synchronize_from_tb(CPUState *cs,
|
||||
AVRCPU *cpu = AVR_CPU(cs);
|
||||
CPUAVRState *env = &cpu->env;
|
||||
|
||||
env->pc_w = tb_pc(tb) / 2; /* internally PC points to words */
|
||||
tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
|
||||
env->pc_w = tb->pc / 2; /* internally PC points to words */
|
||||
}
|
||||
|
||||
static void avr_restore_state_to_opc(CPUState *cs,
|
||||
|
Loading…
Reference in New Issue
Block a user