diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2020-11-12 00:16:39 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2020-11-12 00:16:39 +0000 |
commit | 0f5f9ed5e5a041b636cc002451b1e8b2295f8e4f (patch) | |
tree | be559cf894d65e5c4da1325c784e3eb4fe851b2a /gcc/cp/ChangeLog | |
parent | 5d46ec3db21d8c8926f15a634b2d6570536db5f1 (diff) | |
download | gcc-0f5f9ed5e5a041b636cc002451b1e8b2295f8e4f.zip gcc-0f5f9ed5e5a041b636cc002451b1e8b2295f8e4f.tar.gz gcc-0f5f9ed5e5a041b636cc002451b1e8b2295f8e4f.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/cp/ChangeLog')
-rw-r--r-- | gcc/cp/ChangeLog | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index dd0e82e..babb459 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,39 @@ +2020-11-11 Iain Sandoe <iain@sandoe.co.uk> + + * parser.c (cp_parser_declaration): Unless we are compiling for + Ojective-C++, warn about and discard any attributes that prefix + a linkage specification. + +2020-11-11 Patrick Palka <ppalka@redhat.com> + + PR c++/88115 + * mangle.c (write_expression): Mangle __alignof_ differently + from alignof when the ABI version is at least 15. + +2020-11-11 Patrick Palka <ppalka@redhat.com> + + PR c++/88115 + * cp-tree.h (cxx_sizeof_or_alignof_expr): Add bool parameter. + * decl.c (fold_sizeof_expr): Pass false to + cxx_sizeof_or_alignof_expr. + * parser.c (cp_parser_unary_expression): Pass std_alignof to + cxx_sizeof_or_alignof_expr. + * pt.c (tsubst_copy): Pass false to cxx_sizeof_or_alignof_expr. + (tsubst_copy_and_build): Pass std_alignof to + cxx_sizeof_or_alignof_expr. + * typeck.c (cxx_alignof_expr): Add std_alignof bool parameter + and pass it to cxx_sizeof_or_alignof_type. Set ALIGNOF_EXPR_STD_P + appropriately. + (cxx_sizeof_or_alignof_expr): Add std_alignof bool parameter + and pass it to cxx_alignof_expr. Assert op is either + SIZEOF_EXPR or ALIGNOF_EXPR. + +2020-11-11 Marek Polacek <polacek@redhat.com> + + PR c++/97518 + * pt.c (tsubst_qualified_id): Use EXPR_LOCATION of the qualified-id. + Use it to maybe_wrap_with_location the final expression. + 2020-11-10 Marek Polacek <polacek@redhat.com> PR c++/97518 |