diff options
author | Richard Henderson <rth@twiddle.net> | 2012-08-20 14:02:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-01-05 12:00:29 -0800 |
commit | 891452e5e274967ffb87d10791620154f2cdc303 (patch) | |
tree | 3c5e90f9da1e7e0ec6c060d6f3dd91bb876d78c6 /target-s390x/helper.h | |
parent | c61aad6943cd77046e47cdb5beedad9d035d2216 (diff) | |
download | qemu-891452e5e274967ffb87d10791620154f2cdc303.zip |
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.h | 5 |
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) |