From: Richard Henderson Date: Mon, 22 May 2017 19:54:35 +0000 (-0700) Subject: target/s390x: Use unwind data for helper_tprot X-Git-Tag: v2.10.0-rc0~148^2~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f3ca416656bf1ed0c33b35f2dbbdd50f9b0e17e;p=thirdparty%2Fqemu.git target/s390x: Use unwind data for helper_tprot Reviewed-by: Thomas Huth Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- diff --git a/target/s390x/mem_helper.c b/target/s390x/mem_helper.c index 7df2e5382bf..a8c85c926c2 100644 --- a/target/s390x/mem_helper.c +++ b/target/s390x/mem_helper.c @@ -970,7 +970,6 @@ uint32_t HELPER(testblock)(CPUS390XState *env, uint64_t real_addr) uint32_t HELPER(tprot)(uint64_t a1, uint64_t a2) { /* XXX implement */ - return 0; } diff --git a/target/s390x/translate.c b/target/s390x/translate.c index 16e39d34ede..cafcecba455 100644 --- a/target/s390x/translate.c +++ b/target/s390x/translate.c @@ -4054,7 +4054,6 @@ static ExitStatus op_testblock(DisasContext *s, DisasOps *o) static ExitStatus op_tprot(DisasContext *s, DisasOps *o) { - potential_page_fault(s); gen_helper_tprot(cc_op, o->addr1, o->in2); set_cc_static(s); return NO_EXIT;