summaryrefslogtreecommitdiff
path: root/target-s390x/helper.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-08-23 12:30:12 -0700
committerRichard Henderson <rth@twiddle.net>2013-01-05 12:18:41 -0800
commit722bfec331504bf873a5e4ec4f232c4ed116dda2 (patch)
tree79494a0dcd62f09ae4bd37ca4b3b60c1b48cc3de /target-s390x/helper.h
parent83b00736f3d8033861c27b80c9d3fc7c44bbec99 (diff)
downloadqemu-722bfec331504bf873a5e4ec4f232c4ed116dda2.tar.gz
target-s390: Convert MULTIPLY AND ADD, SUBTRACT
Use the new float*_muladd interface to softfloat. Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-s390x/helper.h')
-rw-r--r--target-s390x/helper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/target-s390x/helper.h b/target-s390x/helper.h
index 36316c3959..21158493c8 100644
--- a/target-s390x/helper.h
+++ b/target-s390x/helper.h
@@ -74,10 +74,10 @@ DEF_HELPER_2(lzxr, void, env, i32)
DEF_HELPER_4(cfebr, i32, env, i32, i32, i32)
DEF_HELPER_4(cfdbr, i32, env, i32, i32, i32)
DEF_HELPER_4(cfxbr, i32, env, i32, i32, i32)
-DEF_HELPER_4(madb, void, env, i32, i64, i32)
-DEF_HELPER_4(maebr, void, env, i32, i32, i32)
-DEF_HELPER_4(madbr, void, env, i32, i32, i32)
-DEF_HELPER_4(msdbr, void, env, i32, i32, i32)
+DEF_HELPER_4(maeb, i64, env, i64, i64, i64)
+DEF_HELPER_4(madb, i64, env, i64, i64, i64)
+DEF_HELPER_4(mseb, i64, env, i64, i64, i64)
+DEF_HELPER_4(msdb, i64, env, i64, i64, i64)
DEF_HELPER_FLAGS_3(tceb, TCG_CALL_NO_WG_SE, i32, env, i32, i64)
DEF_HELPER_FLAGS_3(tcdb, TCG_CALL_NO_WG_SE, i32, env, i32, i64)
DEF_HELPER_FLAGS_3(tcxb, TCG_CALL_NO_WG_SE, i32, env, i32, i64)