summaryrefslogtreecommitdiff
path: root/src/math/i386/llrint.s
diff options
context:
space:
mode:
authornsz <nsz@port70.net>2012-03-19 08:01:21 +0100
committernsz <nsz@port70.net>2012-03-19 08:01:21 +0100
commit0627e58af8514967372a8ff703e7a86c2571acc2 (patch)
treef37eb7417f107ee34277eb58be20d129dfe8b790 /src/math/i386/llrint.s
parentdbdec9722ee604969dddf51e81f8c9e4a9ce064a (diff)
parent495a52ae7bb581aac2942d7cb095cca2ff53ca3c (diff)
downloadmusl-0627e58af8514967372a8ff703e7a86c2571acc2.tar.gz
Merge branch 'master' of git://git.etalabs.net/musl
Diffstat (limited to 'src/math/i386/llrint.s')
-rw-r--r--src/math/i386/llrint.s8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/i386/llrint.s b/src/math/i386/llrint.s
new file mode 100644
index 00000000..e961b35d
--- /dev/null
+++ b/src/math/i386/llrint.s
@@ -0,0 +1,8 @@
+.global llrint
+.type llrint,@function
+llrint:
+ fldl 4(%esp)
+ fistpl 4(%esp)
+ mov 4(%esp),%eax
+ mov 8(%esp),%edx
+ ret