diff options
author | Richard Henderson <rth@twiddle.net> | 2013-02-19 23:52:03 -0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-23 17:25:29 +0000 |
commit | 962415fcd5f8223a6fbc6f7bb8c5fdf2500f2f84 (patch) | |
tree | 2e87691b27555e8ceab0e0fa7dc6249467013f6a /target-alpha/int_helper.c | |
parent | f1fae40c61fd4558c7d10992c98b4bb47f99e0ed (diff) |
target-alpha: Use mulu2 for umulh insn
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-alpha/int_helper.c')
-rw-r--r-- | target-alpha/int_helper.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/target-alpha/int_helper.c b/target-alpha/int_helper.c index c9b42b6ed4..51ccd41bd2 100644 --- a/target-alpha/int_helper.c +++ b/target-alpha/int_helper.c @@ -22,13 +22,6 @@ #include "qemu/host-utils.h" -uint64_t helper_umulh(uint64_t op1, uint64_t op2) -{ - uint64_t tl, th; - mulu64(&tl, &th, op1, op2); - return th; -} - uint64_t helper_ctpop(uint64_t arg) { return ctpop64(arg); |