]> git.proxmox.com Git - qemu.git/blobdiff - target-alpha/int_helper.c
virtio-net: add virtio_net_set_netclient_name.
[qemu.git] / target-alpha / int_helper.c
index 1d832f0b57698f2bcf2d57e64a3f8c2ed2d1d444..51ccd41bd249a131f30e2730a36ef8fd9807e987 100644 (file)
 
 #include "cpu.h"
 #include "helper.h"
-#include "host-utils.h"
+#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);