diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2020-06-30 09:02:21 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2020-06-30 09:02:21 +0000 |
commit | 458f12eda16ee19354ca1937daef45d79bc7ad46 (patch) | |
tree | 715903da0e06c0953c37bd0f5ab9f4afb286abf4 /gcc/cp | |
parent | b05c4c2c5da55afb76c429453bd340fad692f195 (diff) | |
download | gcc-458f12eda16ee19354ca1937daef45d79bc7ad46.zip gcc-458f12eda16ee19354ca1937daef45d79bc7ad46.tar.gz gcc-458f12eda16ee19354ca1937daef45d79bc7ad46.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 82fb0d0..6db8f7f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,27 @@ +2020-06-30 Iain Sandoe <iain@sandoe.co.uk> + + * coroutines.cc (expand_one_await_expression): Remove + code dealing with initial suspend. + (build_actor_fn): Remove code special-casing initial + and final suspend. Handle the final suspend and marking + of the coroutine as done. + (coro_rewrite_function_body): New. + (bind_expr_find_in_subtree): Remove. + (coro_body_contains_bind_expr_p): Remove. + (morph_fn_to_coro): Split the rewrite of the original + function into coro_rewrite_function_body and call it. + +2020-06-29 Marek Polacek <polacek@redhat.com> + + PR c++/94553 + * decl.c (duplicate_decls): Make sure a concept or a variable + template is unique in its declarative region. + +2020-06-29 Marek Polacek <polacek@redhat.com> + + PR c++/95568 + * pt.c (collect_ctor_idx_types): Use TREE_TYPE. + 2020-06-28 Iain Sandoe <iain@sandoe.co.uk> PR c++/95711 |