From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 33670384BC3A; Fri, 3 Sep 2021 10:53:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 33670384BC3A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] ldexp/ldexpf: avoid assembler warning X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: c2fe205b508c32117d2d0f132953d096254d5a7b X-Git-Newrev: 76c2c7a891062eae479f2a06f04ed8e51a90e9b9 Message-Id: <20210903105303.33670384BC3A@sourceware.org> Date: Fri, 3 Sep 2021 10:53:03 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2021 10:53:03 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=76c2c7a891062eae479f2a06f04ed8e51a90e9b9 commit 76c2c7a891062eae479f2a06f04ed8e51a90e9b9 Author: Corinna Vinschen Date: Fri Sep 3 12:52:47 2021 +0200 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 Diff: --- newlib/libm/machine/i386/f_ldexp.S | 2 +- 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 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