diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-01-21 00:16:36 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-01-21 00:16:36 +0000 |
commit | b93d0e36c0a86c3d15310fe7383321ca63aeb04d (patch) | |
tree | 047d761a084aecf6e7491e7c332d71f3bc31e0ce /gcc/cp | |
parent | fb39c4fe445beab2e2bf9402a8ccb3c541f2aa5c (diff) | |
download | gcc-b93d0e36c0a86c3d15310fe7383321ca63aeb04d.zip gcc-b93d0e36c0a86c3d15310fe7383321ca63aeb04d.tar.gz gcc-b93d0e36c0a86c3d15310fe7383321ca63aeb04d.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index fc6ddd4..0ed6a1b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,31 @@ +2021-01-20 Nathan Sidwell <nathan@acm.org> + + * module.cc (bytes_in::i, bytes_in::wi): Avoid left shift of + signed type. + +2021-01-20 Patrick Palka <ppalka@redhat.com> + + PR c++/95434 + * pt.c (tsubst) <case TEMPLATE_TYPE_PARM>: If tsubsting + CLASS_PLACEHOLDER_TEMPLATE yields a TEMPLATE_TEMPLATE_PARM, + adjust to its TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL. + +2021-01-20 Patrick Palka <ppalka@redhat.com> + + PR c++/82613 + * parser.c (cp_parser_class_head): Defer access checking when + parsing the base-clause until all bases are seen and attached + to the class type. + * pt.c (instantiate_class_template): Likewise when substituting + into dependent bases. + +2021-01-20 Jakub Jelinek <jakub@redhat.com> + + PR c++/98742 + * semantics.c (finish_omp_clauses) <case OMP_CLAUSE_DETACH>: If + error_operand_p, remove clause without further checking. Check + for non-NULL TYPE_NAME. + 2021-01-19 Marek Polacek <polacek@redhat.com> PR c++/98659 |