summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-05-14 00:21:05 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-05-14 00:21:05 +0000
commitacfab383ec4c748ab49f406a6e9f24f9b8c5812f (patch)
treeed591fdd4da44abdfce5141870268d6a6141932b
parent5b98dd6703aa1c4aa54de7b6079fd3dc39f7e66d (diff)
Daily bump.
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog114
-rw-r--r--gcc/testsuite/ChangeLog102
3 files changed, 217 insertions, 1 deletions
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 7d15185cd15..8ab2db9cdf6 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220513
+20220514
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 8ce1eddd1b1..fe9d5a153f3 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,117 @@
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101078
+ * pt.c (tsubst_baselink): Update binfos in non-dependent case.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99066
+ * pt.c (mark_decl_instantiated): Set DECL_EXTERNAL.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/100838
+ PR c++/105265
+ * call.c (convert_like_internal): Clear tf_no_cleanup when
+ recursing.
+ (build_user_type_conversion_1): Only add ck_rvalue if
+ LOOKUP_ONLYCONVERTING.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/91217
+ * pt.c (tsubst_lambda_expr): Skip the body block from
+ DECL_SAVED_TREE.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99643
+ * typeck2.c (massage_init_elt): Don't strip TARGET_EXPR.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/65211
+ * pt.c (tsubst_decl) [TYPE_DECL]: Copy TYPE_ALIGN.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101698
+ * pt.c (tsubst_baselink): Also check dependent optype.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101442
+ * decl.c (cp_finish_decl): Don't pass decl to push_cleanup.
+ * init.c (perform_member_init): Likewise.
+ * semantics.c (push_cleanup): Adjust comment.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/98249
+ * call.c (build_operator_new_call): Just look in ::.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/104646
+ * constexpr.c (maybe_save_constexpr_fundef): Don't do extra
+ checks for defaulted ctors.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/59950
+ * call.c (build_over_call): Use cp_build_indirect_ref.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99901
+ * decl.c (cp_finish_decl): mark_needed an implicitly inline
+ static data member with an out-of-class redeclaration.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101717
+ * lambda.c (lambda_expr_this_capture): Check all enclosing
+ lambdas for completeness.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/90664
+ * cvt.c (can_convert_qual): Check fnptr_conv_p.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/95870
+ * pt.c (enclosing_instantiation_of): Compare DECL_SOURCE_LOCATION if
+ there is no enclosing non-lambda function.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/96311
+ * typeck.c (check_return_expr): Call mark_exp_read in dependent
+ case.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/96673
+ * init.c (get_nsdmi): Don't defer access checking.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/91933
+ * class.c (build_base_path): Shortcut simple non-pointer case.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/100032
+ * pt.c (get_underlying_template): Compare TYPE_QUALS.
+
+2022-05-13 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/67184
+ PR c++/69445
+ * call.c (build_new_method_call_1): Remove set but not used variable
+ binfo.
+
2022-05-11 Patrick Palka <ppalka@redhat.com>
Backported from master:
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 9270c6793ef..2507ec523d4 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,105 @@
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101078
+ * g++.dg/template/access39.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99066
+ * g++.dg/cpp0x/extern_template-6.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/100838
+ PR c++/105265
+ * g++.dg/init/no-elide2.C: New test.
+ * g++.dg/cpp0x/initlist-new6.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/91217
+ * g++.dg/opt/nrv20.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99643
+ * g++.dg/cpp0x/initlist-new5.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/65211
+ * g++.target/i386/vec-tmpl1.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101698
+ * g++.dg/template/conv19.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101442
+ * g++.dg/cpp0x/initlist-nrv1.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/98249
+ * g++.dg/lookup/new3.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/104646
+ * g++.dg/cpp0x/constexpr-fno-elide-ctors1.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/59950
+ * g++.dg/init/assign2.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/99901
+ * g++.dg/cpp1z/inline-var9.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/101717
+ * g++.dg/cpp1y/lambda-generic-this4.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/90664
+ * g++.dg/cpp1z/noexcept-type24.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/95870
+ * g++.dg/cpp0x/lambda/lambda-nsdmi10.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/96311
+ * g++.dg/cpp1y/lambda-generic-Wunused.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/96673
+ * g++.dg/cpp1y/nsdmi-aggr13.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/91933
+ * g++.dg/cpp0x/constexpr-base7.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/100032
+ * g++.dg/cpp0x/alias-decl-equiv1.C: New test.
+
+2022-05-13 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/cpp0x/constexpr-array23.C: Remove xfail.
+ * g++.dg/cpp2a/lambda-pack-init6.C: Removed.
+
2022-05-11 Jakub Jelinek <jakub@redhat.com>
PR middle-end/102860