Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2021-09-03 13:52:47 +0300
committerCorinna Vinschen <corinna@vinschen.de>2021-09-03 13:52:47 +0300
commit76c2c7a891062eae479f2a06f04ed8e51a90e9b9 (patch)
treeab3d28487d88945ab45e5b2ec714fbdb9e3924dc /newlib
parentc2fe205b508c32117d2d0f132953d096254d5a7b (diff)
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.S2
-rw-r--r--newlib/libm/machine/i386/f_ldexpf.S2
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 e7b83c438..4ed223682 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 59d53548c..fa19383a9 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