+2020-04-28 Jason Merrill <jason@redhat.com>
+
+ PR c++/94583
+ * decl.c (use_eh_spec_block): Check nothrow type after
+ DECL_DEFAULTED_FN.
+ * pt.c (maybe_instantiate_noexcept): Call synthesize_method for
+ DECL_MAYBE_DELETED fns here.
+ * decl2.c (mark_used): Not here.
+ * method.c (get_defaulted_eh_spec): Reject DECL_MAYBE_DELETED here.
+
2020-04-28 Iain Sandoe <iain@sandoe.co.uk>
PR c++/94760
(LANG_DECL_FN_CHECK (NODE)->has_dependent_explicit_spec_p)
/* Nonzero for a defaulted FUNCTION_DECL for which we haven't decided yet if
- it's deleted. */
+ it's deleted; we will decide in synthesize_method. */
#define DECL_MAYBE_DELETED(NODE) \
(LANG_DECL_FN_CHECK (NODE)->maybe_deleted)
{
return (flag_exceptions && flag_enforce_eh_specs
&& !processing_template_decl
- && !type_throw_all_p (TREE_TYPE (fn))
/* We insert the EH_SPEC_BLOCK only in the original
function; then, it is copied automatically to the
clones. */
not creating the EH_SPEC_BLOCK we save a little memory,
and we avoid spurious warnings about unreachable
code. */
- && !DECL_DEFAULTED_FN (fn));
+ && !DECL_DEFAULTED_FN (fn)
+ && !type_throw_all_p (TREE_TYPE (fn)));
}
/* Helper function to push ARGS into the current lexical scope. DECL
if (TREE_CODE (decl) == CONST_DECL)
used_types_insert (DECL_CONTEXT (decl));
- if (TREE_CODE (decl) == FUNCTION_DECL
- && DECL_MAYBE_DELETED (decl))
- {
- /* ??? Switch other defaulted functions to use DECL_MAYBE_DELETED? */
- gcc_assert (special_function_p (decl) == sfk_comparison);
-
- ++function_depth;
- synthesize_method (decl);
- --function_depth;
- }
-
if (TREE_CODE (decl) == FUNCTION_DECL
&& !maybe_instantiate_noexcept (decl, complain))
return false;
tree
get_defaulted_eh_spec (tree decl, tsubst_flags_t complain)
{
+ /* For DECL_MAYBE_DELETED this should already have been handled by
+ synthesize_method. */
+ gcc_assert (!DECL_MAYBE_DELETED (decl));
+
if (DECL_CLONED_FUNCTION_P (decl))
decl = DECL_CLONED_FUNCTION (decl);
special_function_kind sfk = special_function_p (decl);
- if (sfk == sfk_comparison)
- {
- /* We're in synthesize_method. Start with NULL_TREE, build_comparison_op
- will adjust as needed. */
- gcc_assert (decl == current_function_decl);
- return NULL_TREE;
- }
tree ctype = DECL_CONTEXT (decl);
tree parms = FUNCTION_FIRST_USER_PARMTYPE (decl);
tree parm_type = TREE_VALUE (parms);
&& (!flag_noexcept_type || type_dependent_expression_p (fn)))
return true;
+ if (DECL_MAYBE_DELETED (fn))
+ {
+ if (fn == current_function_decl)
+ /* We're in start_preparsed_function, keep going. */
+ return true;
+
+ ++function_depth;
+ synthesize_method (fn);
+ --function_depth;
+ return !DECL_MAYBE_DELETED (fn);
+ }
+
if (DECL_CLONED_FUNCTION_P (fn))
fn = DECL_CLONED_FUNCTION (fn);
--- /dev/null
+// PR c++/94583
+// { dg-do compile { target c++2a } }
+
+namespace std { struct strong_ordering { }; }
+
+struct Q {
+ friend std::strong_ordering operator<=>(const Q&, const Q&) = default;
+};
+bool operator==(const Q&, const Q&) noexcept;