diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2021-09-03 12:52:47 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-09-03 12:52:47 +0200 |
commit | 76c2c7a891062eae479f2a06f04ed8e51a90e9b9 (patch) | |
tree | ab3d28487d88945ab45e5b2ec714fbdb9e3924dc /newlib | |
parent | c2fe205b508c32117d2d0f132953d096254d5a7b (diff) | |
download | newlib-76c2c7a891062eae479f2a06f04ed8e51a90e9b9.zip newlib-76c2c7a891062eae479f2a06f04ed8e51a90e9b9.tar.gz newlib-76c2c7a891062eae479f2a06f04ed8e51a90e9b9.tar.bz2 |
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>
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/libm/machine/i386/f_ldexp.S | 2 | ||||
-rw-r--r-- | newlib/libm/machine/i386/f_ldexpf.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libm/machine/i386/f_ldexp.S b/newlib/libm/machine/i386/f_ldexp.S index e7b83c4..4ed2236 100644 --- a/newlib/libm/machine/i386/f_ldexp.S +++ b/newlib/libm/machine/i386/f_ldexp.S @@ -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 diff --git a/newlib/libm/machine/i386/f_ldexpf.S b/newlib/libm/machine/i386/f_ldexpf.S index 59d5354..fa19383 100644 --- a/newlib/libm/machine/i386/f_ldexpf.S +++ b/newlib/libm/machine/i386/f_ldexpf.S @@ -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 |