asm for inverse trig functions
[musl] / src / math / i386 / atan2f.s
diff --git a/src/math/i386/atan2f.s b/src/math/i386/atan2f.s
new file mode 100644 (file)
index 0000000..08627e6
--- /dev/null
@@ -0,0 +1,7 @@
+.global atan2f
+.type atan2f,@function
+atan2f:
+       flds 4(%esp)
+       flds 8(%esp)
+       fpatan
+       ret