aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-02-07 00:16:17 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-02-07 00:16:17 +0000
commit353f8fcc2e6ce8997ddfdc55451f0f0e9450f981 (patch)
treefe39ac920d7874910e66662956c715486fc0d218 /gcc/cp
parent8eb329e963593342855b6072e5692659107337b7 (diff)
downloadgcc-353f8fcc2e6ce8997ddfdc55451f0f0e9450f981.zip
gcc-353f8fcc2e6ce8997ddfdc55451f0f0e9450f981.tar.gz
gcc-353f8fcc2e6ce8997ddfdc55451f0f0e9450f981.tar.bz2
Daily bump.
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 5837141..7a1d923 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,21 @@
+2022-02-06 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/96242
+ * decl2.cc (mark_used): Directly synthesize a DECL_MAYBE_DELETED
+ fn by calling maybe_synthesize_method instead of relying on
+ maybe_instantiate_noexcept. Move call to m_i_n after the
+ DECL_DELETED_FN handling.
+ * pt.cc (maybe_instantiate_noexcept): Restrict DECL_MAYBE_DELETED
+ fn synthesis to only those with an implicit noexcept-spec, and
+ return !DECL_DELETED_FN instead of !DECL_MAYBE_DELETED afterwards.
+
+2022-02-06 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/89074
+ PR c++/104033
+ * constexpr.cc (cxx_eval_binary_expression): Temporarily set
+ folding_cxx_constexpr.
+
2022-02-05 Jason Merrill <jason@redhat.com>
PR c++/104300