about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/s_scalbnl.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/x86_64/fpu/s_scalbnl.S')
-rw-r--r--sysdeps/x86_64/fpu/s_scalbnl.S17
1 files changed, 0 insertions, 17 deletions
diff --git a/sysdeps/x86_64/fpu/s_scalbnl.S b/sysdeps/x86_64/fpu/s_scalbnl.S
deleted file mode 100644
index 6c7683c32b..0000000000
--- a/sysdeps/x86_64/fpu/s_scalbnl.S
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Written by J.T. Conklin <jtc@netbsd.org>.
- * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
- * Changes for x86-64 by Andreas Jaeger <aj@suse.de>=09
- * Public domain.
- */
-
-#include <machine/asm.h>
-
-ENTRY(__scalbnl)
-	movl	%edi,-4(%rsp)
-	fildl	-4(%rsp)
-	fldt	8(%rsp)
-	fscale
-	fstp	%st(1)
-	ret
-END (__scalbnl)