aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-05-27 00:16:19 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-05-27 00:16:19 +0000
commitb2cb88fb45a68fc91bda1c69d9486e824c4a559e (patch)
treea17084cc0d24e048ac02109ee49a7a11bb95cceb /gcc
parent367740bf6d3a6627798b3955e5d85efc7549ef50 (diff)
downloadgcc-b2cb88fb45a68fc91bda1c69d9486e824c4a559e.zip
gcc-b2cb88fb45a68fc91bda1c69d9486e824c4a559e.tar.gz
gcc-b2cb88fb45a68fc91bda1c69d9486e824c4a559e.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog22
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog19
-rw-r--r--gcc/testsuite/ChangeLog12
4 files changed, 54 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9018df6..7f8f921 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,25 @@
+2022-05-26 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
+
+ * config/xtensa/xtensa.cc (xtensa_expand_block_move):
+ Make instruction counting more accurate, and simplify emitting insns.
+
+2022-05-26 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
+
+ * config/xtensa/constraints.md (M, O): Use the macro.
+ * config/xtensa/predicates.md (addsubx_operand, extui_fldsz_operand,
+ sext_fldsz_operand): Ditto.
+ * config/xtensa/xtensa.cc (xtensa_simm8, xtensa_simm8x256,
+ xtensa_simm12b, xtensa_uimm8, xtensa_uimm8x2, xtensa_uimm8x4,
+ xtensa_mask_immediate, smalloffset_mem_p, printx, xtensa_call_save_reg,
+ xtensa_expand_prologue): Ditto.
+ * config/xtensa/xtensa.h (FUNCTION_ARG_REGNO_P): Ditto.
+
+2022-05-26 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
+
+ * config/xtensa/predicates.md (extui_fldsz_operand): Simplify.
+ * config/xtensa/xtensa.cc (xtensa_mask_immediate, print_operand):
+ Ditto.
+
2022-05-25 Andrew MacLeod <amacleod@redhat.com>
* gimple-range-cache.cc: Adjust comments.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 470a8c1..025dab2 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220526
+20220527
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index b385bfe..a82acaa 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,22 @@
+2022-05-26 Marek Polacek <polacek@redhat.com>
+
+ PR c++/105569
+ * typeck.cc (warn_for_null_address): Improve the warning when
+ the POINTER_PLUS_EXPR's base is of reference type.
+
+2022-05-26 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/96363
+ * decl.cc (shadow_tag): Use the return value of
+ maybe_process_partial_specialization.
+ * parser.cc (cp_parser_single_declaration): Call shadow_tag
+ before associate_classtype_constraints.
+ * pt.cc (maybe_new_partial_specialization): Change return type
+ to bool. Take 'type' argument by mutable reference. Set 'type'
+ to point to the correct constrained specialization when
+ appropriate.
+ (maybe_process_partial_specialization): Adjust accordingly.
+
2022-05-25 Marek Polacek <polacek@redhat.com>
PR c++/96637
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b2e5321..9734aeb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,15 @@
+2022-05-26 Marek Polacek <polacek@redhat.com>
+
+ PR c++/105569
+ * g++.dg/warn/Waddress-9.C: New test.
+
+2022-05-26 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/96363
+ * g++.dg/cpp2a/concepts-partial-spec12.C: New test.
+ * g++.dg/cpp2a/concepts-partial-spec12a.C: New test.
+ * g++.dg/cpp2a/concepts-partial-spec13.C: New test.
+
2022-05-25 Marek Polacek <polacek@redhat.com>
PR c++/96637