public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-490] builtins: Fix  comment typo mpft_t -> mpfr_t
@ 2023-05-05  7:53 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2023-05-05  7:53 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:21cf5ec1993f33d7993559db25bc14c1fa57d790

commit r14-490-g21cf5ec1993f33d7993559db25bc14c1fa57d790
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri May 5 09:52:28 2023 +0200

    builtins: Fix  comment typo mpft_t -> mpfr_t
    
    I've noticed 4 typos in comments, fixed thusly.
    
    2023-05-05  Jakub Jelinek  <jakub@redhat.com>
    
            * builtins.cc (do_mpfr_ckconv, do_mpc_ckconv): Fix comment typo,
            mpft_t -> mpfr_t.
            * fold-const-call.cc (do_mpfr_ckconv, do_mpc_ckconv): Likewise.

Diff:
---
 gcc/builtins.cc        | 4 ++--
 gcc/fold-const-call.cc | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gcc/builtins.cc b/gcc/builtins.cc
index bd07873a80e..c21c4688c58 100644
--- a/gcc/builtins.cc
+++ b/gcc/builtins.cc
@@ -10911,7 +10911,7 @@ do_mpfr_ckconv (mpfr_srcptr m, tree type, int inexact)
       real_from_mpfr (&rr, m, type, MPFR_RNDN);
       /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR value,
 	 check for overflow/underflow.  If the REAL_VALUE_TYPE is zero
-	 but the mpft_t is not, then we underflowed in the
+	 but the mpfr_t is not, then we underflowed in the
 	 conversion.  */
       if (real_isfinite (&rr)
 	  && (rr.cl == rvc_zero) == (mpfr_zero_p (m) != 0))
@@ -10952,7 +10952,7 @@ do_mpc_ckconv (mpc_srcptr m, tree type, int inexact, int force_convert)
       real_from_mpfr (&im, mpc_imagref (m), TREE_TYPE (type), MPFR_RNDN);
       /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR values,
 	 check for overflow/underflow.  If the REAL_VALUE_TYPE is zero
-	 but the mpft_t is not, then we underflowed in the
+	 but the mpfr_t is not, then we underflowed in the
 	 conversion.  */
       if (force_convert
 	  || (real_isfinite (&re) && real_isfinite (&im)
diff --git a/gcc/fold-const-call.cc b/gcc/fold-const-call.cc
index fa0b287cc8a..340cb667f6a 100644
--- a/gcc/fold-const-call.cc
+++ b/gcc/fold-const-call.cc
@@ -101,7 +101,7 @@ do_mpfr_ckconv (real_value *result, mpfr_srcptr m, bool inexact,
   real_from_mpfr (&tmp, m, format, MPFR_RNDN);
 
   /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR values.
-     If the REAL_VALUE_TYPE is zero but the mpft_t is not, then we
+     If the REAL_VALUE_TYPE is zero but the mpfr_t is not, then we
      underflowed in the conversion.  */
   if (!real_isfinite (&tmp)
       || ((tmp.cl == rvc_zero) != (mpfr_zero_p (m) != 0)))
@@ -295,7 +295,7 @@ do_mpc_ckconv (real_value *result_real, real_value *result_imag,
   real_from_mpfr (&tmp_imag, mpc_imagref (m), format, MPFR_RNDN);
 
   /* Proceed iff GCC's REAL_VALUE_TYPE can hold the MPFR values.
-     If the REAL_VALUE_TYPE is zero but the mpft_t is not, then we
+     If the REAL_VALUE_TYPE is zero but the mpfr_t is not, then we
      underflowed in the conversion.  */
   if (!real_isfinite (&tmp_real)
       || !real_isfinite (&tmp_imag)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-05-05  7:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-05  7:53 [gcc r14-490] builtins: Fix comment typo mpft_t -> mpfr_t Jakub Jelinek

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).