summaryrefslogtreecommitdiff
path: root/target-s390x/int_helper.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2013-02-19 23:52:04 -0800
committerBlue Swirl <blauwirbel@gmail.com>2013-02-23 17:25:29 +0000
commitdc46d1c68aa107b8e3c95f66e87cd9d02e6452a9 (patch)
treeffedc11115d70b702bb4c3a38a299948165da0f8 /target-s390x/int_helper.c
parent962415fcd5f8223a6fbc6f7bb8c5fdf2500f2f84 (diff)
downloadqemu-dc46d1c68aa107b8e3c95f66e87cd9d02e6452a9.tar.gz
target-s390x: Use mulu2 for mlgr insn
Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-s390x/int_helper.c')
-rw-r--r--target-s390x/int_helper.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/target-s390x/int_helper.c b/target-s390x/int_helper.c
index 685830124f..af16b21baa 100644
--- a/target-s390x/int_helper.c
+++ b/target-s390x/int_helper.c
@@ -29,14 +29,6 @@
#define HELPER_LOG(x...)
#endif
-/* 64/64 -> 128 unsigned multiplication */
-uint64_t HELPER(mul128)(CPUS390XState *env, uint64_t v1, uint64_t v2)
-{
- uint64_t reth;
- mulu64(&env->retxl, &reth, v1, v2);
- return reth;
-}
-
/* 64/32 -> 32 signed division */
int64_t HELPER(divs32)(CPUS390XState *env, int64_t a, int64_t b64)
{