mirror of https://github.com/xemu-project/xemu.git
target/s390x: Use unwind data for helper_tprot
Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
aef2b01a50
commit
1f3ca41665
|
@ -970,7 +970,6 @@ uint32_t HELPER(testblock)(CPUS390XState *env, uint64_t real_addr)
|
||||||
uint32_t HELPER(tprot)(uint64_t a1, uint64_t a2)
|
uint32_t HELPER(tprot)(uint64_t a1, uint64_t a2)
|
||||||
{
|
{
|
||||||
/* XXX implement */
|
/* XXX implement */
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4054,7 +4054,6 @@ static ExitStatus op_testblock(DisasContext *s, DisasOps *o)
|
||||||
|
|
||||||
static ExitStatus op_tprot(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);
|
gen_helper_tprot(cc_op, o->addr1, o->in2);
|
||||||
set_cc_static(s);
|
set_cc_static(s);
|
||||||
return NO_EXIT;
|
return NO_EXIT;
|
||||||
|
|
Loading…
Reference in New Issue