]> Git Repo - qemu.git/blobdiff - target-arm/iwmmxt_helper.c
tcg: Push merged memop+mmu_idx parameter to softmmu routines
[qemu.git] / target-arm / iwmmxt_helper.c
index 398cbcbec7e444865dae436d228c4685f33c80bc..a5069144d19adfc76541d4100294e1e3e1dd2b19 100644 (file)
@@ -369,15 +369,6 @@ IWMMXT_OP_AVGW(1)
 #undef IWMMXT_OP_AVGW
 #undef AVGW
 
-uint64_t HELPER(iwmmxt_msadb)(uint64_t a, uint64_t b)
-{
-    a =  ((((a >> 0 ) & 0xffff) * ((b >> 0) & 0xffff) +
-           ((a >> 16) & 0xffff) * ((b >> 16) & 0xffff)) & 0xffffffff) |
-         ((((a >> 32) & 0xffff) * ((b >> 32) & 0xffff) +
-           ((a >> 48) & 0xffff) * ((b >> 48) & 0xffff)) << 32);
-    return a;
-}
-
 uint64_t HELPER(iwmmxt_align)(uint64_t a, uint64_t b, uint32_t n)
 {
     a >>= n << 3;
This page took 0.020477 seconds and 4 git commands to generate.