diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-04-05 09:04:36 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-04-07 12:17:15 -0300 |
commit | 13d45cf9a71705e18d61dab2b6670e63aafb06f1 (patch) | |
tree | d49e3da277e2f3a21de40b9b7ea02cf7e91a0180 /sysdeps/i386/fpu | |
parent | 2a45807e73f04eaca186cbaa2f52430935c48ae3 (diff) | |
download | glibc-13d45cf9a71705e18d61dab2b6670e63aafb06f1.tar.gz glibc-13d45cf9a71705e18d61dab2b6670e63aafb06f1.tar.xz glibc-13d45cf9a71705e18d61dab2b6670e63aafb06f1.zip |
x86: Remove fcopysign{f} implementation
The builtin used by generic code generates similar code. Checked on x86_64-linux-gnu and i686-linux-gnu.
Diffstat (limited to 'sysdeps/i386/fpu')
-rw-r--r-- | sysdeps/i386/fpu/s_copysign.S | 20 | ||||
-rw-r--r-- | sysdeps/i386/fpu/s_copysignf.S | 20 | ||||
-rw-r--r-- | sysdeps/i386/fpu/s_copysignl.S | 20 |
3 files changed, 0 insertions, 60 deletions
diff --git a/sysdeps/i386/fpu/s_copysign.S b/sysdeps/i386/fpu/s_copysign.S deleted file mode 100644 index a49d34e4b7..0000000000 --- a/sysdeps/i386/fpu/s_copysign.S +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Public domain. - */ - -#include <machine/asm.h> -#include <libm-alias-double.h> - -RCSID("$NetBSD: s_copysign.S,v 1.4 1995/05/08 23:53:02 jtc Exp $") - -ENTRY(__copysign) - movl 16(%esp),%edx - movl 8(%esp),%eax - andl $0x80000000,%edx - andl $0x7fffffff,%eax - orl %edx,%eax - movl %eax,8(%esp) - fldl 4(%esp) - ret -END (__copysign) -libm_alias_double (__copysign, copysign) diff --git a/sysdeps/i386/fpu/s_copysignf.S b/sysdeps/i386/fpu/s_copysignf.S deleted file mode 100644 index edc540c4d6..0000000000 --- a/sysdeps/i386/fpu/s_copysignf.S +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Public domain. - */ - -#include <machine/asm.h> -#include <libm-alias-float.h> - -RCSID("$NetBSD: s_copysignf.S,v 1.3 1995/05/08 23:53:25 jtc Exp $") - -ENTRY(__copysignf) - movl 8(%esp),%edx - movl 4(%esp),%eax - andl $0x80000000,%edx - andl $0x7fffffff,%eax - orl %edx,%eax - movl %eax,4(%esp) - flds 4(%esp) - ret -END (__copysignf) -libm_alias_float (__copysign, copysign) diff --git a/sysdeps/i386/fpu/s_copysignl.S b/sysdeps/i386/fpu/s_copysignl.S deleted file mode 100644 index 9d9b273e94..0000000000 --- a/sysdeps/i386/fpu/s_copysignl.S +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Public domain. - */ - -#include <libm-alias-ldouble.h> -#include <machine/asm.h> - -RCSID("$NetBSD: $") - -ENTRY(__copysignl) - movl 24(%esp),%edx - movl 12(%esp),%eax - andl $0x8000,%edx - andl $0x7fff,%eax - orl %edx,%eax - movl %eax,12(%esp) - fldt 4(%esp) - ret -END (__copysignl) -libm_alias_ldouble (__copysign, copysign) |