summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn van Groningen2009-08-27 09:46:26 +0000
committerJohn van Groningen2009-08-27 09:46:26 +0000
commit4b3ba1b027af8d3d7e1eb81ffb0818bb69eacc53 (patch)
tree56a837d7b847e3b2b20f801d9f6c0ec4a9ec8541
parentfix zero arity descriptor offset of _Nil in finalizer list (diff)
make ln and log10 faster
-rw-r--r--istartup.s6
1 files changed, 2 insertions, 4 deletions
diff --git a/istartup.s b/istartup.s
index 49800fd..7c038f2 100644
--- a/istartup.s
+++ b/istartup.s
@@ -5240,8 +5240,7 @@ atan_real:
ret
ln_real:
- fldl2e
- fdivrl one_real
+ fldln2
fxch %st(1)
fyl2x
ret
@@ -5249,8 +5248,7 @@ ln_real:
@c_log10:
fldl 4(sp)
log10_real:
- fldl2t
- fdivrl one_real
+ fldlg2
fxch %st(1)
fyl2x
ret