public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-260] Remove range_has_numeric_bounds_p.
@ 2023-04-26 11:50 Aldy Hernandez
  0 siblings, 0 replies; only message in thread
From: Aldy Hernandez @ 2023-04-26 11:50 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:5db3d28e04e75233bca0070a0ef92bcf8eebc2f5

commit r14-260-g5db3d28e04e75233bca0070a0ef92bcf8eebc2f5
Author: Aldy Hernandez <aldyh@redhat.com>
Date:   Wed Dec 21 13:07:54 2022 +0100

    Remove range_has_numeric_bounds_p.
    
    gcc/ChangeLog:
    
            * value-range.cc (irange::copy_legacy_to_multi_range): Rewrite use
            of range_has_numeric_bounds_p with irange API.
            (range_has_numeric_bounds_p): Delete.
            * value-range.h (range_has_numeric_bounds_p): Delete.

Diff:
---
 gcc/value-range.cc | 12 +++---------
 gcc/value-range.h  |  1 -
 2 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/gcc/value-range.cc b/gcc/value-range.cc
index da9098139ad..f7c3e7a00e2 100644
--- a/gcc/value-range.cc
+++ b/gcc/value-range.cc
@@ -979,7 +979,9 @@ irange::copy_legacy_to_multi_range (const irange &src)
     set_varying (src.type ());
   else
     {
-      if (range_has_numeric_bounds_p (&src))
+      if (!src.undefined_p ()
+	  && TREE_CODE (src.min ()) == INTEGER_CST
+	  && TREE_CODE (src.max ()) == INTEGER_CST)
 	set (src.min (), src.max (), src.kind ());
       else
 	{
@@ -3068,14 +3070,6 @@ ranges_from_anti_range (const value_range *ar,
   return !vr0->undefined_p ();
 }
 
-bool
-range_has_numeric_bounds_p (const irange *vr)
-{
-  return (!vr->undefined_p ()
-	  && TREE_CODE (vr->min ()) == INTEGER_CST
-	  && TREE_CODE (vr->max ()) == INTEGER_CST);
-}
-
 /* Return whether VAL is equal to the maximum value of its type.
    We can't do a simple equality comparison with TYPE_MAX_VALUE because
    C typedefs and Ada subtypes can produce types whose TYPE_MAX_VALUE
diff --git a/gcc/value-range.h b/gcc/value-range.h
index c1474a73eaf..b47540d49be 100644
--- a/gcc/value-range.h
+++ b/gcc/value-range.h
@@ -669,7 +669,6 @@ irange::legacy_mode_p () const
   return m_max_ranges == 1;
 }
 
-extern bool range_has_numeric_bounds_p (const irange *);
 extern bool ranges_from_anti_range (const value_range *,
 				    value_range *, value_range *);
 extern value_range_kind get_legacy_range (const irange &, tree &min, tree &max);

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

only message in thread, other threads:[~2023-04-26 11:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-26 11:50 [gcc r14-260] Remove range_has_numeric_bounds_p Aldy Hernandez

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