diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-04-05 00:00:59 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-05-15 08:55:19 +0200 |
commit | 763f2413e0e37688d9cf707542cb112142fe23f8 (patch) | |
tree | dff4188da9c26a00afd12c3a43ffac7025615c25 /target/s390x/tcg | |
parent | a41cd1e6c3475932f9a3ca51a3fc2cc7a697b44e (diff) | |
download | qemu-763f2413e0e37688d9cf707542cb112142fe23f8.zip qemu-763f2413e0e37688d9cf707542cb112142fe23f8.tar.gz qemu-763f2413e0e37688d9cf707542cb112142fe23f8.tar.bz2 |
target/s390x: Use translator_lduw in get_next_pc
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/s390x/tcg')
-rw-r--r-- | target/s390x/tcg/translate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c index bac033c..ebd96ab 100644 --- a/target/s390x/tcg/translate.c +++ b/target/s390x/tcg/translate.c @@ -36,7 +36,6 @@ #include "tcg/tcg-op-gvec.h" #include "qemu/log.h" #include "qemu/host-utils.h" -#include "exec/cpu_ldst.h" #include "exec/helper-proto.h" #include "exec/helper-gen.h" @@ -6471,7 +6470,7 @@ static void s390x_tr_insn_start(DisasContextBase *dcbase, CPUState *cs) static target_ulong get_next_pc(CPUS390XState *env, DisasContext *s, uint64_t pc) { - uint64_t insn = cpu_lduw_code(env, pc); + uint64_t insn = translator_lduw(env, &s->base, pc); return pc + get_ilen((insn >> 8) & 0xff); } |