public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: John David Anglin <danglin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r14-8923] Fix gcc.c-torture/execute/ieee/cdivchkf.c on hpux
Date: Sun, 11 Feb 2024 21:39:20 +0000 (GMT)	[thread overview]
Message-ID: <20240211213920.2ED0B3858D20@sourceware.org> (raw)

https://gcc.gnu.org/g:19a647bd72632dd5829eddd0d29b04be4fcb864f

commit r14-8923-g19a647bd72632dd5829eddd0d29b04be4fcb864f
Author: John David Anglin <danglin@gcc.gnu.org>
Date:   Sun Feb 11 21:36:56 2024 +0000

    Fix gcc.c-torture/execute/ieee/cdivchkf.c on hpux
    
    2024-02-11  John David Anglin  <danglin@gcc.gnu.org>
    
    gcc/testsuite/ChangeLog:
    
            * gcc.c-torture/execute/ieee/cdivchkf.c: Use ilogb and
            __builtin_fmax instead of ilogbf and __builtin_fmaxf.

Diff:
---
 gcc/testsuite/gcc.c-torture/execute/ieee/cdivchkf.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gcc/testsuite/gcc.c-torture/execute/ieee/cdivchkf.c b/gcc/testsuite/gcc.c-torture/execute/ieee/cdivchkf.c
index adf1ed91dc7d..86ef69f87719 100644
--- a/gcc/testsuite/gcc.c-torture/execute/ieee/cdivchkf.c
+++ b/gcc/testsuite/gcc.c-torture/execute/ieee/cdivchkf.c
@@ -8,7 +8,7 @@
 extern void abort (void);
 extern void exit (int);
 
-extern int ilogbf (float);
+extern int ilogb (double);
 int match (float _Complex, float _Complex);
 
 #define SMALL FLT_MIN
@@ -22,7 +22,8 @@ int match (float _Complex, float _Complex);
 int match (float _Complex c, float _Complex z)
 {
   float rz, iz, rc, ic;
-  float rerr, ierr, rmax;
+  float rerr, ierr;
+  double rmax;
   int biterr;
   rz = __real__ z;
   iz = __imag__ z;
@@ -54,11 +55,11 @@ int match (float _Complex c, float _Complex z)
     {
       ierr = __builtin_fabsf (iz - ic) / SMALL;
     }
-  rmax = __builtin_fmaxf(rerr, ierr);
+  rmax = __builtin_fmax (rerr, ierr);
   biterr = 0;
   if ( rmax != 0.0)      
     {
-      biterr = ilogbf (rmax) + MAXBIT + 1;
+      biterr = ilogb (rmax) + MAXBIT + 1;
     }
 
   if (biterr >= ERRLIM)

                 reply	other threads:[~2024-02-11 21:39 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240211213920.2ED0B3858D20@sourceware.org \
    --to=danglin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).