asm versions of some simple math functions for i386 and x86_64
[musl] / src / math / i386 / rintf.s
diff --git a/src/math/i386/rintf.s b/src/math/i386/rintf.s
new file mode 100644 (file)
index 0000000..bce4c5a
--- /dev/null
@@ -0,0 +1,6 @@
+.global rintf
+.type rintf,@function
+rintf:
+       flds 4(%esp)
+       frndint
+       ret