Normalize ranges over the range for both bounds when -ffinite-math-only.
authorAldy Hernandez <aldyh@redhat.com>
Fri, 14 Oct 2022 10:07:40 +0000 (12:07 +0200)
committerAldy Hernandez <aldyh@redhat.com>
Fri, 14 Oct 2022 14:27:40 +0000 (16:27 +0200)
[-Inf, +Inf] was being chopped correctly for -ffinite-math-only, but
[-Inf, -Inf] was not.  This was latent because a bug in
real_isdenormal is causing us to flush -Inf to zero.

gcc/ChangeLog:

* value-range.cc (frange::set): Normalize ranges for both bounds.

gcc/value-range.cc

index 86550f1..6b4f3dd 100644 (file)
@@ -340,8 +340,12 @@ frange::set (tree type,
       REAL_VALUE_TYPE max_repr = frange_val_max (m_type);
       if (real_less (&m_min, &min_repr))
        m_min = min_repr;
+      else if (real_less (&max_repr, &m_min))
+       m_min = max_repr;
       if (real_less (&max_repr, &m_max))
        m_max = max_repr;
+      else if (real_less (&m_max, &min_repr))
+       m_max = min_repr;
     }
 
   // Check for swapped ranges.