]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-alpha/int_helper.c
dataplane: endianness-aware accesses
[mirror_qemu.git] / target-alpha / int_helper.c
index 1d832f0b57698f2bcf2d57e64a3f8c2ed2d1d444..7a205eb9fa33dfd7c6f67258c98597a76b51fbc3 100644 (file)
  */
 
 #include "cpu.h"
-#include "helper.h"
-#include "host-utils.h"
+#include "exec/helper-proto.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);