2009-11-18 Dave Korn <dave.korn.cygwin@googlemail.com>
* libm/machine/i386/f_tan.S (_f_tan): Free fp stack register containing useless constant before advancing fp sp over it. (_f_tanf): Likewise.
This commit is contained in:
parent
7d5ae9ccf7
commit
b425cbf482
|
@ -1,3 +1,9 @@
|
|||
2009-11-18 Dave Korn <dave.korn.cygwin@googlemail.com>
|
||||
|
||||
* libm/machine/i386/f_tan.S (_f_tan): Free fp stack register
|
||||
containing useless constant before advancing fp sp over it.
|
||||
(_f_tanf): Likewise.
|
||||
|
||||
2009-11-18 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/stdio/vfprintf.c: Include ../stdlib/local.h. Replace call to
|
||||
|
|
|
@ -29,6 +29,7 @@ SYM (_f_tan):
|
|||
movl esp,ebp
|
||||
fldl 8(ebp)
|
||||
fptan
|
||||
ffree %st(0)
|
||||
fincstp
|
||||
|
||||
leave
|
||||
|
|
|
@ -29,6 +29,7 @@ SYM (_f_tanf):
|
|||
movl esp,ebp
|
||||
flds 8(ebp)
|
||||
fptan
|
||||
ffree %st(0)
|
||||
fincstp
|
||||
|
||||
leave
|
||||
|
|
Loading…
Reference in New Issue