about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/e_atan2l.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/fpu/e_atan2l.S')
-rw-r--r--sysdeps/i386/fpu/e_atan2l.S17
1 files changed, 17 insertions, 0 deletions
diff --git a/sysdeps/i386/fpu/e_atan2l.S b/sysdeps/i386/fpu/e_atan2l.S
new file mode 100644
index 0000000000..f58eaa94a9
--- /dev/null
+++ b/sysdeps/i386/fpu/e_atan2l.S
@@ -0,0 +1,17 @@
+/*
+ * Written by J.T. Conklin <jtc@netbsd.org>.
+ * Public domain.
+ *
+ * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
+ */
+
+#include <machine/asm.h>
+
+RCSID("$NetBSD: $")
+
+ENTRY(__ieee754_atan2l)
+	fldt	 4(%esp)
+	fldt	16(%esp)
+	fpatan
+	ret
+END (__ieee754_atan2l)