diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-06-26 00:17:38 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-06-26 00:17:38 +0000 |
commit | 9fe669ced175196d0a80a905a6edc22ae9d1c68a (patch) | |
tree | f9469bbc1edaa6b13eed773e71f8f2524a1b12c6 /gcc/cp | |
parent | 737449e5f233feb682b5dd2cc153892ad90a79bd (diff) | |
download | gcc-9fe669ced175196d0a80a905a6edc22ae9d1c68a.zip gcc-9fe669ced175196d0a80a905a6edc22ae9d1c68a.tar.gz gcc-9fe669ced175196d0a80a905a6edc22ae9d1c68a.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 006a0ed..59428a9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,48 @@ +2024-06-26 Patrick Palka <ppalka@redhat.com> + + PR c++/115504 + * semantics.cc (finish_decltype_type): Don't strip the reference + type (if any) of a capture proxy's captured variable. + +2024-06-25 Marek Polacek <polacek@redhat.com> + + PR c++/115476 + * semantics.cc (finish_trait_expr) + <case CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS>: Move below to call + check_trait_type with kind==2. + +2024-06-25 Marek Polacek <polacek@redhat.com> + + PR c++/115425 + * pt.cc (tsubst_pack_expansion): Return error_mark_node if + make_pack_expansion doesn't work out. + +2024-06-25 Marek Polacek <polacek@redhat.com> + + PR c++/115501 + * rtti.cc (build_dynamic_cast_1): Return if dcast_fn is erroneous. + +2024-06-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115198 + * pt.cc (alias_ctad_tweaks): Update DECL_NAME of the transformed + guides. + +2024-06-25 Patrick Palka <ppalka@redhat.com> + + PR c++/115358 + * decl2.cc (mark_used): Call maybe_instantiate_decl for an array + variable with unknown bound. + * semantics.cc (finish_decltype_type): Remove now redundant + handling of array variables with unknown bound. + * typeck.cc (cxx_sizeof_expr): Likewise. + +2024-06-25 Sandra Loosemore <sloosemore@baylibre.com> + + PR c/115587 + * parser.cc (cp_parser_omp_loop_nest): Move initializations to + point of declaration. + 2024-06-17 Jakub Jelinek <jakub@redhat.com> PR target/111343 |