aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-04-21 00:16:32 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-04-21 00:16:32 +0000
commit29a25a6038331f33175990a85a844c20babceb0e (patch)
tree99a4de128df10bc3dc898e9c41266361d3c2b20f /gcc
parent5bde80f48bcc594658c788895ad1fd86d0916fc2 (diff)
downloadgcc-29a25a6038331f33175990a85a844c20babceb0e.zip
gcc-29a25a6038331f33175990a85a844c20babceb0e.tar.gz
gcc-29a25a6038331f33175990a85a844c20babceb0e.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog28
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog19
4 files changed, 54 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 363f25e..77375f2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,31 @@
+2022-04-20 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/104912
+ * tree-vect-loop-manip.cc (vect_loop_versioning): Split
+ the cost model check to a separate BB to make sure it is
+ checked first and not combined with other version checks.
+
+2022-04-20 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/105312
+ * gimple-isel.cc (gimple_expand_vec_cond_expr): Query both
+ VCOND and VCONDU for EQ and NE.
+
+2022-04-20 Jan Hubicka <hubicka@ucw.cz>
+
+ PR ipa/103818
+ * ipa-modref-tree.cc (modref_access_node::closer_pair_p): Use
+ poly_offset_int to avoid overflow.
+ (modref_access_node::update2): likewise.
+
+2022-04-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR ipa/105306
+ * cgraph.cc (cgraph_node::create): Set node->semantic_interposition
+ to opt_for_fn (decl, flag_semantic_interposition).
+ * cgraphclones.cc (cgraph_node::create_clone): Copy over
+ semantic_interposition flag.
+
2022-04-19 Sergei Trofimovich <siarheit@google.com>
PR gcov-profile/105282
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 82f97c7..d4ff1292 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220420
+20220421
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 448bc54..a64f5b5 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2022-04-20 Ed Catmur <ed@catmur.uk>
+
+ PR c++/104996
+ * call.cc (compare_ics): When comparing list-initialization
+ sequences, do not return early.
+
2022-04-19 Jakub Jelinek <jakub@redhat.com>
PR c++/105256
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6644cb4..365aac8 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,22 @@
+2022-04-20 Ed Catmur <ed@catmur.uk>
+
+ PR c++/104996
+ * g++.dg/cpp0x/initlist129.C: New test.
+
+2022-04-20 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/105312
+ * gcc.target/arm/pr105312.c: New testcase.
+
+2022-04-20 Jan Hubicka <hubicka@ucw.cz>
+
+ * gcc.c-torture/compile/103818.c: New test.
+
+2022-04-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR ipa/105306
+ * g++.dg/opt/pr105306.C: New test.
+
2022-04-19 Jakub Jelinek <jakub@redhat.com>
PR target/105257