about summary refs log tree commit diff
path: root/sysdeps/libm-i387/s_copysignl.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-i387/s_copysignl.S')
-rw-r--r--sysdeps/libm-i387/s_copysignl.S21
1 files changed, 0 insertions, 21 deletions
diff --git a/sysdeps/libm-i387/s_copysignl.S b/sysdeps/libm-i387/s_copysignl.S
deleted file mode 100644
index 2163e7b014..0000000000
--- a/sysdeps/libm-i387/s_copysignl.S
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Written by J.T. Conklin <jtc@netbsd.org>.
- * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
- * Public domain.
- */
-
-#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)
-weak_alias (__copysignl, copysignl)