summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnton Johansson <anjo@rev.ng>2023-02-27 14:51:49 +0100
committerRichard Henderson <richard.henderson@linaro.org>2023-03-01 07:33:06 -1000
commitc4bf3a92264e13b4468737fce36f08f8028c74d1 (patch)
tree5192b49521be464c5f55e969453a1dab0efe73fa
parent25acb5e442840514be9ab26888ee14eda3c1dc31 (diff)
downloadfocaccia-qemu-c4bf3a92264e13b4468737fce36f08f8028c74d1.tar.gz
focaccia-qemu-c4bf3a92264e13b4468737fce36f08f8028c74d1.zip
target/sparc: 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-15-anjo@rev.ng>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--target/sparc/cpu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/target/sparc/cpu.c b/target/sparc/cpu.c
index 1734ef8dc6..e329a7aece 100644
--- a/target/sparc/cpu.c
+++ b/target/sparc/cpu.c
@@ -25,6 +25,7 @@
 #include "exec/exec-all.h"
 #include "hw/qdev-properties.h"
 #include "qapi/visitor.h"
+#include "tcg/tcg.h"
 
 //#define DEBUG_FEATURES
 
@@ -707,7 +708,8 @@ static void sparc_cpu_synchronize_from_tb(CPUState *cs,
 {
     SPARCCPU *cpu = SPARC_CPU(cs);
 
-    cpu->env.pc = tb_pc(tb);
+    tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
+    cpu->env.pc = tb->pc;
     cpu->env.npc = tb->cs_base;
 }