From 962415fcd5f8223a6fbc6f7bb8c5fdf2500f2f84 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Tue, 19 Feb 2013 23:52:03 -0800 Subject: target-alpha: Use mulu2 for umulh insn Signed-off-by: Richard Henderson Signed-off-by: Blue Swirl --- target-alpha/int_helper.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'target-alpha/int_helper.c') 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); -- cgit v1.2.3