diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-03-26 10:22:39 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-03-26 10:22:39 +0000 |
commit | 31e989a2785bee8d507f2a06b5d3bd8c45989ab5 (patch) | |
tree | cc4de94a93577f77d3c0808f62a974496be9b604 /gcc/cp | |
parent | 0268c547de3e3559e056ce597eb168db5c4e5f74 (diff) | |
download | gcc-31e989a2785bee8d507f2a06b5d3bd8c45989ab5.zip gcc-31e989a2785bee8d507f2a06b5d3bd8c45989ab5.tar.gz gcc-31e989a2785bee8d507f2a06b5d3bd8c45989ab5.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 6a1524b..f17a9c9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,17 @@ +2022-03-26 Jakub Jelinek <jakub@redhat.com> + + * parser.cc (cp_parser_postfix_expression) + <case RID_BILTIN_CONVERTVECTOR, case RID_BUILTIN_BIT_CAST>: Don't + return cp_build_{vec,convert,bit_cast} result right away, instead + set postfix_expression to it and break. + +2022-03-25 Marek Polacek <polacek@redhat.com> + + PR c++/104944 + * typeck.cc (cxx_sizeof_or_alignof_type): Diagnose alignof(void). + (cxx_alignas_expr): Call cxx_sizeof_or_alignof_type with + complain == true. + 2022-03-24 Marek Polacek <polacek@redhat.com> PR c++/104284 |