4
0
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:
Corinna Vinschen 2021-09-03 12:52:47 +02:00
parent c2fe205b50
commit 76c2c7a891
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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