summaryrefslogtreecommitdiff
path: root/target-s390x/helper.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-08-20 14:02:02 -0700
committerRichard Henderson <rth@twiddle.net>2013-01-05 12:00:29 -0800
commit891452e5e274967ffb87d10791620154f2cdc303 (patch)
tree3c5e90f9da1e7e0ec6c060d6f3dd91bb876d78c6 /target-s390x/helper.h
parentc61aad6943cd77046e47cdb5beedad9d035d2216 (diff)
downloadqemu-891452e5e274967ffb87d10791620154f2cdc303.tar.gz
target-s390: Convert DIVIDE
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-s390x/helper.h')
-rw-r--r--target-s390x/helper.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/target-s390x/helper.h b/target-s390x/helper.h
index a45b1c362b..dcc3fce502 100644
--- a/target-s390x/helper.h
+++ b/target-s390x/helper.h
@@ -10,7 +10,10 @@ DEF_HELPER_3(mvcl, i32, env, i32, i32)
DEF_HELPER_4(clm, i32, env, i32, i32, i64)
DEF_HELPER_4(stcm, void, env, i32, i32, i64)
DEF_HELPER_FLAGS_3(mul128, TCG_CALL_NO_RWG, i64, env, i64, i64)
-DEF_HELPER_3(dlg, void, env, i32, i64)
+DEF_HELPER_3(divs32, s64, env, s64, s64)
+DEF_HELPER_3(divu32, i64, env, i64, i64)
+DEF_HELPER_3(divs64, s64, env, s64, s64)
+DEF_HELPER_4(divu64, i64, env, i64, i64, i64)
DEF_HELPER_4(srst, i32, env, i32, i32, i32)
DEF_HELPER_4(clst, i32, env, i32, i32, i32)
DEF_HELPER_4(mvpg, void, env, i64, i64, i64)