public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-3103] Do not check finite_operands_p twice in range-ops-float.
@ 2022-10-06  6:23 Aldy Hernandez
  0 siblings, 0 replies; only message in thread
From: Aldy Hernandez @ 2022-10-06  6:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9eab8e45dd106ee6b9ca9fa9ec46876b0bb7f482

commit r13-3103-g9eab8e45dd106ee6b9ca9fa9ec46876b0bb7f482
Author: Aldy Hernandez <aldyh@redhat.com>
Date:   Wed Oct 5 20:21:26 2022 +0200

    Do not check finite_operands_p twice in range-ops-float.
    
    The uses of finite_operands_p removed are guarded by a call to
    finite_operands_p already.
    
    gcc/ChangeLog:
    
            * range-op-float.cc (foperator_lt::fold_range): Remove extra check
            to finite_operands_p.
            (foperator_le::fold_range): Same.
            (foperator_gt::fold_range): Same.
            (foperator_ge::fold_range): Same.

Diff:
---
 gcc/range-op-float.cc | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/gcc/range-op-float.cc b/gcc/range-op-float.cc
index 6e9d51d3b4b..68578aa6fe7 100644
--- a/gcc/range-op-float.cc
+++ b/gcc/range-op-float.cc
@@ -572,8 +572,7 @@ foperator_lt::fold_range (irange &r, tree type,
     {
       if (real_less (&op1.upper_bound (), &op2.lower_bound ()))
 	r = range_true (type);
-      else if (finite_operands_p (op1, op2)
-	       && !real_less (&op1.lower_bound (), &op2.upper_bound ()))
+      else if (!real_less (&op1.lower_bound (), &op2.upper_bound ()))
 	r = range_false (type);
       else
 	r = range_true_and_false (type);
@@ -688,8 +687,7 @@ foperator_le::fold_range (irange &r, tree type,
     {
       if (real_compare (LE_EXPR, &op1.upper_bound (), &op2.lower_bound ()))
 	r = range_true (type);
-      else if (finite_operands_p (op1, op2)
-	       && !real_compare (LE_EXPR, &op1.lower_bound (), &op2.upper_bound ()))
+      else if (!real_compare (LE_EXPR, &op1.lower_bound (), &op2.upper_bound ()))
 	r = range_false (type);
       else
 	r = range_true_and_false (type);
@@ -796,8 +794,7 @@ foperator_gt::fold_range (irange &r, tree type,
     {
       if (real_compare (GT_EXPR, &op1.lower_bound (), &op2.upper_bound ()))
 	r = range_true (type);
-      else if (finite_operands_p (op1, op2)
-	       && !real_compare (GT_EXPR, &op1.upper_bound (), &op2.lower_bound ()))
+      else if (!real_compare (GT_EXPR, &op1.upper_bound (), &op2.lower_bound ()))
 	r = range_false (type);
       else
 	r = range_true_and_false (type);
@@ -912,8 +909,7 @@ foperator_ge::fold_range (irange &r, tree type,
     {
       if (real_compare (GE_EXPR, &op1.lower_bound (), &op2.upper_bound ()))
 	r = range_true (type);
-      else if (finite_operands_p (op1, op2)
-	       && !real_compare (GE_EXPR, &op1.upper_bound (), &op2.lower_bound ()))
+      else if (!real_compare (GE_EXPR, &op1.upper_bound (), &op2.lower_bound ()))
 	r = range_false (type);
       else
 	r = range_true_and_false (type);

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

only message in thread, other threads:[~2022-10-06  6:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-06  6:23 [gcc r13-3103] Do not check finite_operands_p twice in range-ops-float 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).