public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 13.0.1-0.1
Date: Mon, 29 Jun 2026 12:30:01 GMT	[thread overview]
Message-ID: <178273620132.1.2571734091544469738.rpms-gcc-2e2b76f57af4@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : 2e2b76f57af416790e0b37794e9ad0e49d99e2e9
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2023-01-17T21:37:23+01:00
Stats  : +3/-52 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/2e2b76f57af416790e0b37794e9ad0e49d99e2e9?branch=rhel-f41-base

Log:
13.0.1-0.1

---
diff --git a/gcc.spec b/gcc.spec
index e74955f..23c0c3f 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -287,8 +287,7 @@ Patch9: gcc13-Wno-format-security.patch
 Patch10: gcc13-rh1574936.patch
 Patch11: gcc13-d-shared-libphobos.patch
 Patch12: gcc13-pr107678.patch
-Patch13: gcc13-pr107608.patch
-Patch14: gcc13-pr108411.patch
+Patch13: gcc13-pr108411.patch
 
 Patch50: isl-rh2155127.patch
 
@@ -864,8 +863,7 @@ so that there cannot be any synchronization problems.
 %endif
 %patch11 -p0 -b .d-shared-libphobos~
 %patch12 -p0 -b .pr107678~
-%patch13 -p0 -b .pr107608~
-%patch14 -p0 -b .pr108411~
+%patch13 -p0 -b .pr108411~
 
 %patch50 -p0 -b .rh2155127~
 touch -r isl-0.24/m4/ax_prog_cxx_for_build.m4 isl-0.24/m4/ax_prog_cc_for_build.m4
@@ -3467,7 +3465,7 @@ end
   - PRs c++/105593, fortran/108421, go/108426, ipa/106077, libstdc++/108288,
 	libstdc++/108413, other/108413, target/55522, target/96795,
 	target/105980, target/107515, target/108272, tree-optimization/94793,
-	tree-optimization/106523, tree-optimization/107608
+	tree-optimization/106523
 - don't build ppc64le unwinder with -fno-omit-frame-pointer (#2161595)
 
 * Sun Jan 15 2023 Jakub Jelinek <jakub@redhat.com> 13.0.0-0.9

diff --git a/gcc13-pr107608.patch b/gcc13-pr107608.patch
deleted file mode 100644
index 305b260..0000000
--- a/gcc13-pr107608.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-2023-01-15  Aldy Hernandez  <aldyh@redhat.com>
-
-	PR tree-optimization/107608
-	* range-op-float.cc (range_operator_float::fold_range): Avoid
-	folding into INF when flag_trapping_math.
-	* value-range.h (frange::known_isinf): Return false for possible NANs.
-
---- gcc/range-op-float.cc
-+++ gcc/range-op-float.cc
-@@ -91,6 +91,27 @@ range_operator_float::fold_range (frange &r, tree type,
-   else
-     r.clear_nan ();
- 
-+  // If the result has overflowed and flag_trapping_math, folding this
-+  // operation could elide an overflow or division by zero exception.
-+  // Avoid returning a singleton +-INF, to keep the propagators (DOM
-+  // and substitute_and_fold_engine) from folding.  See PR107608.
-+  if (flag_trapping_math
-+      && MODE_HAS_INFINITIES (TYPE_MODE (type))
-+      && r.known_isinf () && !op1.known_isinf () && !op2.known_isinf ())
-+    {
-+      REAL_VALUE_TYPE inf = r.lower_bound ();
-+      if (real_isneg (&inf))
-+	{
-+	  REAL_VALUE_TYPE min = real_min_representable (type);
-+	  r.set (type, inf, min);
-+	}
-+      else
-+	{
-+	  REAL_VALUE_TYPE max = real_max_representable (type);
-+	  r.set (type, max, inf);
-+	}
-+    }
-+
-   return true;
- }
- 
---- gcc/value-range.h
-+++ gcc/value-range.h
-@@ -1300,6 +1300,7 @@ inline bool
- frange::known_isinf () const
- {
-   return (m_kind == VR_RANGE
-+	  && !maybe_isnan ()
- 	  && real_identical (&m_min, &m_max)
- 	  && real_isinf (&m_min));
- }

             reply	other threads:[~2026-06-29 12:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-29 12:30 Jakub Jelinek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:30 [rpms/gcc] rhel-f41-base: 13.0.1-0.1 Jakub Jelinek

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=178273620132.1.2571734091544469738.rpms-gcc-2e2b76f57af4@fedoraproject.org \
    --to=jakub@redhat.com \
    --cc=git-commits@fedoraproject.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