]> git.proxmox.com Git - qemu.git/blobdiff - target-arm/neon_helper.c
target-arm: Use TCG operation for Neon 64 bit negation
[qemu.git] / target-arm / neon_helper.c
index 9aa920d2ac56fbec02fcccbd1cbaa5b93950bb47..89280b6eeb35d01c677323e909a51ac2389d7b7b 100644 (file)
@@ -1664,12 +1664,6 @@ uint64_t HELPER(neon_negl_u32)(uint64_t x)
     return low | ((uint64_t)high << 32);
 }
 
-/* FIXME:  There should be a native op for this.  */
-uint64_t HELPER(neon_negl_u64)(uint64_t x)
-{
-    return -x;
-}
-
 /* Saturating sign manipulation.  */
 /* ??? Make these use NEON_VOP1 */
 #define DO_QABS8(x) do { \