]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 27 Mar 2022 00:16:33 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 27 Mar 2022 00:16:33 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/analyzer/ChangeLog
gcc/c-family/ChangeLog
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog

index 4b1cdddde8115399529a600ebd8417acbf2ab1a3..1f49cbdcd6736829a2c19b7f809c48a14460461b 100644 (file)
@@ -1,3 +1,30 @@
+2022-03-26  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR middle-end/104885
+       * calls.cc (mark_stack_region_used): Check that the region
+       is within the allocated size of stack_usage_map.
+
+2022-03-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/103775
+       * recog.cc (check_invalid_inc_dec): New function.
+       (insn_invalid_p): Return 1 if REG_INC operand overlaps
+       any stored REGs.
+
+2022-03-26  H.J. Lu  <hjl.tools@gmail.com>
+
+       PR target/105058
+       * config/i386/sse.md (loadiwkey): Replace "v" with "x".
+       (aes<aesklvariant>u8): Likewise.
+
+2022-03-26  H.J. Lu  <hjl.tools@gmail.com>
+
+       PR target/105052
+       * config/i386/sse.md (ssse3_ph<plusminus_mnemonic>wv4hi3):
+       Replace "Yv" with "x".
+       (ssse3_ph<plusminus_mnemonic>dv2si3): Likewise.
+       (ssse3_psign<mode>3): Likewise.
+
 2022-03-26  Hans-Peter Nilsson  <hp@axis.com>
 
        * reload.cc (find_reloads): Align comment with code where
index 8b0bfd64c7b7cd6ab9cc6980252d74ef904e4884..70c092d6a8044813b2884fd6c0e1b42bc45fd9dd 100644 (file)
@@ -1 +1 @@
-20220326
+20220327
index a76d61e3cbb0047023137fdc32d5eac7b7a41aa2..d0c74b48105372fda183314a2fb3d95d66aeb1e8 100644 (file)
@@ -1,3 +1,12 @@
+2022-03-26  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/105057
+       * store.cc (binding_cluster::make_unknown_relative_to): Reject
+       attempts to create a cluster for untracked base regions.
+       (store::set_value): Likewise.
+       (store::fill_region): Likewise.
+       (store::mark_region_as_unknown): Likewise.
+
 2022-03-25  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/104954
index c28da277ec028936d9265589b9a643a73f3f585f..a85f82f490b18cca29aeb1c1e47331eb6f7c2d9c 100644 (file)
@@ -1,3 +1,7 @@
+2022-03-26  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * c.opt: Properly quote comment.
+
 2022-03-25  Eric Botcazou  <ebotcazou@adacore.com>
 
        * c-ada-spec.cc (dump_ada_import): Deal with the "section" attribute
index f17a9c9a5ac0da0b282af5f97e7c38954ada0fba..2c885b2394e932dba9242eb96801e4aedc72733d 100644 (file)
@@ -1,3 +1,16 @@
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/105050
+       * constexpr.cc (potential_constant_expression_1) <case IF_STMT>:
+       Clarify error message when a if-stmt is non-constant because its
+       branches are non-constant.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/103455
+       * call.cc (add_builtin_candidate) <case MEMBER_REF>: Test
+       CLASS_TYPE_P instead of MAYBE_CLASS_TYPE_P.
+
 2022-03-26  Jakub Jelinek  <jakub@redhat.com>
 
        * parser.cc (cp_parser_postfix_expression)
index 51880608576de8b0ad47997ccda8bb7eab529d34..260858893d25f35fad22bbfeb6513e9ad4a9c094 100644 (file)
@@ -1,3 +1,28 @@
+2022-03-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/103775
+       * gcc.dg/pr103775.c: New test.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/105050
+       * g++.dg/cpp1y/constexpr-105050.C: New test.
+
+2022-03-26  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/103455
+       * g++.dg/overload/builtin6.C: New test.
+
+2022-03-26  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/105057
+       * gcc.dg/analyzer/fread-2.c: New test, as a regression test for
+       ICE in store::set_value on untracked base region.
+       * gcc.dg/analyzer/memset-2.c: Likewise, for ICE in
+       store::fill_region.
+       * gcc.dg/analyzer/strcpy-2.c: Likewise, for ICE in
+       store::mark_region_as_unknown.
+
 2022-03-26  Jakub Jelinek  <jakub@redhat.com>
 
        * c-c++-common/builtin-convertvector-3.c: New test.