mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
ldexp/ldexpf: avoid assembler warning
libm/machine/i386/f_ldexp.S:30: Warning: no instruction mnemonic suffix given and no register operands; using default for `fild' libm/machine/i386/f_ldexpf.S:30: Warning: no instruction mnemonic suffix given and no register operands; using default for `fild' fix this by adding the l mnemonic suffix Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
c2fe205b50
commit
76c2c7a891
@ -27,7 +27,7 @@ There is no error checking or setting of errno.
|
||||
SYM (_f_ldexp):
|
||||
pushl ebp
|
||||
movl esp,ebp
|
||||
fild 16(ebp)
|
||||
fildl 16(ebp)
|
||||
fldl 8(ebp)
|
||||
fscale
|
||||
fstp st1
|
||||
|
@ -27,7 +27,7 @@ There is no error checking or setting of errno.
|
||||
SYM (_f_ldexpf):
|
||||
pushl ebp
|
||||
movl esp,ebp
|
||||
fild 12(ebp)
|
||||
fildl 12(ebp)
|
||||
flds 8(ebp)
|
||||
fscale
|
||||
fstp st1
|
||||
|
Loading…
x
Reference in New Issue
Block a user