diff options
author | David Hildenbrand | 2017-09-26 20:33:16 +0200 |
---|---|---|
committer | Cornelia Huck | 2017-10-06 10:53:02 +0200 |
commit | 4ae433417e36c78cf51fc654fb0e4086d2879a7c (patch) | |
tree | 9b74316509ea4659512ac83f249dc61368883912 /target/s390x/translate.c | |
parent | s390x/tcg: make lura(g) use the new _real mmu. (diff) | |
download | qemu-4ae433417e36c78cf51fc654fb0e4086d2879a7c.tar.gz qemu-4ae433417e36c78cf51fc654fb0e4086d2879a7c.tar.xz qemu-4ae433417e36c78cf51fc654fb0e4086d2879a7c.zip |
s390x/tcg: make stora(g) use the new _real mmu
As we properly handle the return address now, we can drop
potential_page_fault().
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20170926183318.12995-5-david@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/translate.c')
-rw-r--r-- | target/s390x/translate.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/s390x/translate.c b/target/s390x/translate.c index f64a31760e..9ef95141f9 100644 --- a/target/s390x/translate.c +++ b/target/s390x/translate.c @@ -4126,7 +4126,6 @@ static ExitStatus op_stnosm(DisasContext *s, DisasOps *o) static ExitStatus op_stura(DisasContext *s, DisasOps *o) { check_privileged(s); - potential_page_fault(s); gen_helper_stura(cpu_env, o->in2, o->in1); return NO_EXIT; } @@ -4134,7 +4133,6 @@ static ExitStatus op_stura(DisasContext *s, DisasOps *o) static ExitStatus op_sturg(DisasContext *s, DisasOps *o) { check_privileged(s); - potential_page_fault(s); gen_helper_sturg(cpu_env, o->in2, o->in1); return NO_EXIT; } |