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] snapshot: 16.1.1-1
Date: Thu, 04 Jun 2026 14:12:11 GMT [thread overview]
Message-ID: <178058233150.1.8823560300689728901.rpms-gcc-665ab38c17c4@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : snapshot
Commit : 665ab38c17c4c20a5e73cfc705cd519a27be052b
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2026-05-01T21:59:16+02:00
Stats : +33/-0 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/665ab38c17c4c20a5e73cfc705cd519a27be052b?branch=snapshot
Log:
16.1.1-1
---
diff --git a/gcc.spec b/gcc.spec
index 0598c4f..7e158fd 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -323,6 +323,7 @@ Patch9: gcc16-Wno-format-security.patch
Patch10: gcc16-rh1574936.patch
Patch11: gcc16-d-shared-libphobos.patch
Patch12: gcc16-pr119006.patch
+Patch13: gcc16-pr125079.patch
Patch50: isl-rh2155127.patch
diff --git a/gcc16-pr125079.patch b/gcc16-pr125079.patch
new file mode 100644
index 0000000..7cb2ce6
--- /dev/null
+++ b/gcc16-pr125079.patch
@@ -0,0 +1,32 @@
+2026-05-01 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/125079
+ * tree-ssa-strlen.cc (get_string_length): Don't overwrite
+ lenstmt variable with another stmt.
+
+--- gcc/tree-ssa-strlen.cc.jj 2026-05-01 14:56:28.322882547 +0200
++++ gcc/tree-ssa-strlen.cc 2026-05-01 21:53:56.978672178 +0200
+@@ -848,7 +848,7 @@ get_string_length (strinfo *si)
+ attempt to compute the length from the call statement. */
+ if (si->stmt)
+ {
+- gimple *stmt = si->stmt, *lenstmt = NULL;
++ gimple *stmt = si->stmt, *lenstmt = NULL, *g;
+ tree callee, lhs, fn, tem;
+ location_t loc;
+ gimple_stmt_iterator gsi;
+@@ -883,11 +883,11 @@ get_string_length (strinfo *si)
+ lhs = force_gimple_operand_gsi (&gsi, lhs, true, NULL_TREE,
+ true, GSI_SAME_STMT);
+ }
+- lenstmt = gimple_build_assign
++ g = gimple_build_assign
+ (make_ssa_name (TREE_TYPE (gimple_call_arg (stmt, 0))),
+ POINTER_PLUS_EXPR,tem, lhs);
+- gsi_insert_before (&gsi, lenstmt, GSI_SAME_STMT);
+- gimple_call_set_arg (stmt, 0, gimple_assign_lhs (lenstmt));
++ gsi_insert_before (&gsi, g, GSI_SAME_STMT);
++ gimple_call_set_arg (stmt, 0, gimple_assign_lhs (g));
+ lhs = NULL_TREE;
+ /* FALLTHRU */
+ case BUILT_IN_STRCPY:
next reply other threads:[~2026-06-04 14:12 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-04 14:12 Jakub Jelinek [this message]
2026-06-04 14:12 [rpms/gcc] snapshot: 16.1.1-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=178058233150.1.8823560300689728901.rpms-gcc-665ab38c17c4@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