mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target/arm: 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-27-anjo@rev.ng> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
604b66ce5e
commit
f51a1dd72f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue