]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 13 May 2022 00:17:32 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 13 May 2022 00:17:32 +0000 (00:17 +0000)
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog

index 2a18b6434838d49b241a8be9d54138e715a85a09..7d15185cd15a12cd7a0b7e38c4a126954a60aafe 100644 (file)
@@ -1 +1 @@
-20220512
+20220513
index 93ead748ae068c50f43c966efae8bcc55109958c..fb966a7e0c478216a6ba0dc4fd49389b64e85199 100644 (file)
@@ -1,3 +1,93 @@
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101767
+       * decl.c (reshape_init_class): Back out of anon struct
+       if a designator doesn't match.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/41723
+       * parser.c (cp_parser_class_name): Check dependent_scope_p.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104142
+       * decl.c (check_initializer): Check TREE_SIDE_EFFECTS.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/102071
+       * init.c (build_new_1): Include cookie in alignment.  Omit
+       constexpr wrapper from alloc_call.
+
+2022-05-12  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-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/82980
+       * lambda.c (type_deducible_expression_p): New.
+       (lambda_capture_field_type): Check it.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104646
+       * constexpr.c (maybe_save_constexpr_fundef): Don't do extra
+       checks for defaulted ctors.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/102629
+       * pt.c (gen_elem_of_pack_expansion_instantiation): Clear
+       TEMPLATE_TYPE_PARAMETER_PACK on auto.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/59950
+       * call.c (build_over_call): Use cp_build_indirect_ref.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105245
+       PR c++/100111
+       * constexpr.c (cxx_eval_store_expression): Build a CONSTRUCTOR
+       as needed in empty base handling.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101717
+       * lambda.c (lambda_expr_this_capture): Check all enclosing
+       lambdas for completeness.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100608
+       * name-lookup.c (check_local_shadow): Use -Wshadow=local
+       if exactly one of 'old' and 'decl' is a type.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/98249
+       * call.c (build_operator_new_call): Just look in ::.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101767
+       * decl.c (reshape_init_class): Back out of anon struct
+       if a designator doesn't match.
+
 2022-05-11  Patrick Palka  <ppalka@redhat.com>
 
        Backported from master:
index 329358894648b84cccc364009bf161c6174a61ec..06072f98436d4066a7a0da0b5e7e164567836692 100644 (file)
@@ -1,3 +1,82 @@
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101767
+       * g++.dg/ext/anon-struct10.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/41723
+       * g++.dg/template/friend71.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104142
+       * g++.dg/opt/const7.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/102071
+       * g++.dg/cpp1z/aligned-new9.C: New test.
+
+2022-05-12  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-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/82980
+       * g++.dg/cpp0x/lambda/lambda-current-inst1.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104646
+       * g++.dg/cpp0x/constexpr-fno-elide-ctors1.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/102629
+       * g++.dg/cpp2a/lambda-pack-init7.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/59950
+       * g++.dg/init/assign2.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105245
+       PR c++/100111
+       * g++.dg/cpp1y/constexpr-empty2.C: Add -fno-elide-constructors.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101717
+       * g++.dg/cpp1y/lambda-generic-this4.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100608
+       * g++.dg/warn/Wshadow-compatible-local-3.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/98249
+       * g++.dg/lookup/new3.C: New test.
+
+2022-05-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101767
+       * g++.dg/ext/anon-struct10.C: New test.
+
 2022-05-11  Patrick Palka  <ppalka@redhat.com>
 
        Backported from master: