]> git.proxmox.com Git - qemu.git/blobdiff - target-alpha/int_helper.c
virtio-rng: Fix crash with non-default backend
[qemu.git] / target-alpha / int_helper.c
index c9b42b6ed4239e65a39fdcf99c8bdf80abf3eaaf..51ccd41bd249a131f30e2730a36ef8fd9807e987 100644 (file)
 #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);