about summary refs log tree commit diff
path: root/sysdeps/libm-i387/s_tanf.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-i387/s_tanf.S')
-rw-r--r--sysdeps/libm-i387/s_tanf.S17
1 files changed, 0 insertions, 17 deletions
diff --git a/sysdeps/libm-i387/s_tanf.S b/sysdeps/libm-i387/s_tanf.S
deleted file mode 100644
index 7a7509119b..0000000000
--- a/sysdeps/libm-i387/s_tanf.S
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Written by J.T. Conklin <jtc@netbsd.org>.
- * Public domain.
- */
-
-#include <machine/asm.h>
-
-RCSID("$NetBSD: s_tanf.S,v 1.3 1995/05/09 00:31:09 jtc Exp $")
-
-/* A float's domain isn't large enough to require argument reduction. */
-ENTRY(__tanf)
-	flds	4(%esp)
-	fptan
-	fstp	%st(0)
-	ret
-END (__tanf)
-weak_alias (__tanf, tanf)