public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rawhide: 16.2.1-2
@ 2026-08-19  8:16 Jakub Jelinek
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-08-19  8:16 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rawhide
Commit : 751f1a1e4dbcefa2345b538165d4b3bad2826c1c
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2026-08-19T10:16:07+02:00
Stats  : +0/-48 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/751f1a1e4dbcefa2345b538165d4b3bad2826c1c?branch=rawhide

Log:
16.2.1-2

---
diff --git a/gcc.spec b/gcc.spec
index 8d1c857..6018d71 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -323,7 +323,6 @@ Patch9: gcc16-Wno-format-security.patch
 Patch10: gcc16-rh1574936.patch
 Patch11: gcc16-d-shared-libphobos.patch
 Patch12: gcc16-pr119006.patch
-Patch13: gcc16-pr126667.patch
 
 Patch50: isl-rh2155127.patch
 

diff --git a/gcc16-pr126667.patch b/gcc16-pr126667.patch
deleted file mode 100644
index f7548f6..0000000
--- a/gcc16-pr126667.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-2026-08-06  Jakub Jelinek  <jakub@redhat.com>
-
-	PR target/126667
-	* config/s390/s390.md (usubc<mode>5): If operands[4] is
-	an immediate operand other than const0_rtx, force it into reg
-	before using it in xor<mode>3 insn.
-
-	* gcc.dg/pr126667.c: New test.
-	* gcc.target/s390/pr126667.c: New test.
-
---- gcc/config/s390/s390.md.jj	2026-08-06 10:24:00.121415450 +0200
-+++ gcc/config/s390/s390.md	2026-08-06 13:36:37.344210259 +0200
-@@ -6745,7 +6745,9 @@ (define_expand "usubc<mode>5"
-   else
-     {
-       rtx tmp = gen_reg_rtx (<MODE>mode);
--      emit_insn (gen_xor<mode>3 (tmp, operands[4], const1_rtx));
-+      emit_insn (gen_xor<mode>3 (tmp, CONSTANT_P (operands[4])
-+				      ? force_reg (<MODE>mode, operands[4])
-+				      : operands[4], const1_rtx));
-       rtx slb_cond = s390_emit_compare (<MODE>mode, LEU, tmp, const0_rtx);
-       emit_insn (gen_sub<mode>3_slb_borrow1_cc (operands[0], operands[2], operands[3], slb_cond));
-     }
---- gcc/testsuite/gcc.dg/pr126667.c.jj	2026-08-06 13:37:24.743970575 +0200
-+++ gcc/testsuite/gcc.dg/pr126667.c	2026-08-06 13:37:18.352048196 +0200
-@@ -0,0 +1,9 @@
-+/* PR target/126667 */
-+/* { dg-do compile } */
-+/* { dg-options "-O2" } */
-+
-+unsigned long
-+foo (unsigned long x, unsigned long y, unsigned long *p)
-+{
-+  return __builtin_subcl (x, y, 1UL, p);
-+}
---- gcc/testsuite/gcc.target/s390/pr126667.c.jj	2026-08-06 13:37:50.592656684 +0200
-+++ gcc/testsuite/gcc.target/s390/pr126667.c	2026-08-06 13:38:11.096407697 +0200
-@@ -0,0 +1,9 @@
-+/* PR target/126667 */
-+/* { dg-do compile } */
-+/* { dg-options "-O2 -march=z14" } */
-+
-+unsigned long
-+foo (unsigned long x, unsigned long y, unsigned long *p)
-+{
-+  return __builtin_subcl (x, y, 1UL, p);
-+}

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [rpms/gcc] rawhide: 16.2.1-2
@ 2026-08-19  7:57 Jakub Jelinek
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-08-19  7:57 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rawhide
Commit : a9791b1a8b5f39811767adeea758fde94fd9f9ae
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2026-08-19T09:57:07+02:00
Stats  : +14/-4 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/a9791b1a8b5f39811767adeea758fde94fd9f9ae?branch=rawhide

Log:
16.2.1-2

---
diff --git a/.gitignore b/.gitignore
index 6134e0f..b5b4320 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,3 +43,4 @@
 /gcc-16.1.1-20260515.tar.xz
 /gcc-16.1.1-20260703.tar.xz
 /gcc-16.2.1-20260807.tar.xz
+/gcc-16.2.1-20260819.tar.xz

diff --git a/gcc.spec b/gcc.spec
index 42c4e02..8d1c857 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,10 +1,10 @@
-%global DATE 20260807
-%global gitrev 25040fb60e95bc8cb8eaa4b6706bd32591d95e7a
+%global DATE 20260819
+%global gitrev 95ef1679dd68f27b3d056a497318089d85aa0d55
 %global gcc_version 16.2.1
 %global gcc_major 16
 # Note, gcc_release must be integer, if you want to add suffixes to
 # %%{release}, append them after %%{gcc_release} on Release: line.
-%global gcc_release 1
+%global gcc_release 2
 %global nvptx_tools_gitrev 212da2e781ed0f9423824e85eb04819958513f7a
 %global newlib_cygwin_gitrev d35cc82b5ec15bb8a5fe0fe11e183d1887992e99
 %global _unpackaged_files_terminate_build 0
@@ -3989,6 +3989,15 @@ end
 %endif
 
 %changelog
+* Wed Aug 19 2026 Jakub Jelinek <jakub@redhat.com> 16.2.1-2
+- update from releases/gcc-16 branch
+  - PRs c++/124794, c++/124806, c++/125069, c++/126093, c++/126483,
+	c++/126752, c++/126754, c++/126783, c++/126867, c++/126918,
+	fortran/104048, fortran/110626, fortran/125263, fortran/126205,
+	fortran/126872, libstdc++/125981, libstdc++/126452, libstdc++/126849,
+	target/125803, target/126334, target/126454, target/126529,
+	target/126550, target/126676, tree-optimization/126534
+
 * Fri Aug  7 2026 Jakub Jelinek <jakub@redhat.com> 16.2.1-1
 - update from releases/gcc-16 branch
   - GCC 16.2.0 release

diff --git a/sources b/sources
index 6571421..e3931dc 100644
--- a/sources
+++ b/sources
@@ -1,4 +1,4 @@
-SHA512 (gcc-16.2.1-20260807.tar.xz) = 5bb60a3172a7c2bfe8723e683b3621f8faabe97e1d5b4ef716e63e9a6e92e16870881661d14eb085af5d4bfe72f0a6b3f866479c9d7133957c0b15d78b35bd19
+SHA512 (gcc-16.2.1-20260819.tar.xz) = 6583ec486ab104dbb46aed2adb27d0e77c02e60ecd275c7bc9f0da51f865a61432b3b6d37d57381fde0d7c097ec231b197f6c9ab1b6787511f425aac9bcc037a
 SHA512 (isl-0.24.tar.bz2) = aab3bddbda96b801d0f56d2869f943157aad52a6f6e6a61745edd740234c635c38231af20bc3f1a08d416a5e973a90e18249078ed8e4ae2f1d5de57658738e95
 SHA512 (newlib-cygwin-d35cc82b5ec15bb8a5fe0fe11e183d1887992e99.tar.xz) = ef9495745a96d1d76f9f425c4a48c807fface36a1aa92351c5d024103678d144d046e8de55d195103784472c14874e29e4b9284d5d6a2e7bb27fd98c8455a881
 SHA512 (nvptx-tools-212da2e781ed0f9423824e85eb04819958513f7a.tar.xz) = 5a5509b0513843254ee2be277e0b8d4733f643b74b98c739e82872181a2c366b9b43de9e5fb505aa1e9967a382da59cab015f63011cbcb5972971f2160870f00

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-19  8:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-19  8:16 [rpms/gcc] rawhide: 16.2.1-2 Jakub Jelinek
  -- strict thread matches above, loose matches on Subject: below --
2026-08-19  7:57 Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox