aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/method.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2019-11-11 23:57:29 -0500
committerJason Merrill <jason@gcc.gnu.org>2019-11-11 23:57:29 -0500
commitc9cd5c56fd01ea931308dfb6232a01cd5478bd3d (patch)
tree4f55345662efee8ad0ae92896a795ee80a048114 /gcc/cp/method.c
parent6e9a85d5052607c8ed31940ce2794323df9463cc (diff)
downloadgcc-c9cd5c56fd01ea931308dfb6232a01cd5478bd3d.zip
gcc-c9cd5c56fd01ea931308dfb6232a01cd5478bd3d.tar.gz
gcc-c9cd5c56fd01ea931308dfb6232a01cd5478bd3d.tar.bz2
Implement P1946R0, Allow defaulting comparisons by value.
* method.c (early_check_defaulted_comparison): Accept by-value, reject mixed by-value and by-reference parms. * decl.c (grokdeclarator): Set funcdef_flag for defaulted friend. * decl2.c (grokfield): Don't SET_DECL_FRIEND_CONTEXT. From-SVN: r278078
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r--gcc/cp/method.c50
1 files changed, 33 insertions, 17 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c
index 47441c1..acba6c6 100644
--- a/gcc/cp/method.c
+++ b/gcc/cp/method.c
@@ -1094,38 +1094,54 @@ early_check_defaulted_comparison (tree fn)
if (!DECL_OVERLOADED_OPERATOR_IS (fn, SPACESHIP_EXPR)
&& !same_type_p (TREE_TYPE (TREE_TYPE (fn)), boolean_type_node))
{
- error_at (loc, "defaulted %qD must return %<bool%>", fn);
- ok = false;
+ diagnostic_t kind = DK_UNSPECIFIED;
+ int opt = 0;
+ if (is_auto (TREE_TYPE (fn)))
+ kind = DK_PEDWARN;
+ else
+ kind = DK_ERROR;
+ emit_diagnostic (kind, loc, opt,
+ "defaulted %qD must return %<bool%>", fn);
+ if (kind == DK_ERROR)
+ ok = false;
}
- int i = DECL_NONSTATIC_MEMBER_FUNCTION_P (fn);
- if (i && type_memfn_quals (TREE_TYPE (fn)) != TYPE_QUAL_CONST)
+ bool mem = DECL_NONSTATIC_MEMBER_FUNCTION_P (fn);
+ if (mem && type_memfn_quals (TREE_TYPE (fn)) != TYPE_QUAL_CONST)
{
error_at (loc, "defaulted %qD must be %<const%>", fn);
ok = false;
}
tree parmnode = FUNCTION_FIRST_USER_PARMTYPE (fn);
+ bool saw_byval = false;
+ bool saw_byref = mem;
+ bool saw_bad = false;
for (; parmnode != void_list_node; parmnode = TREE_CHAIN (parmnode))
{
- ++i;
tree parmtype = TREE_VALUE (parmnode);
- diagnostic_t kind = DK_UNSPECIFIED;
- int opt = 0;
if (same_type_p (parmtype, ctx))
- /* The draft specifies const reference, but let's also allow by-value
- unless -Wpedantic, hopefully it will be added soon. */
- kind = DK_PEDWARN,
- opt = OPT_Wpedantic;
+ saw_byval = true;
else if (TREE_CODE (parmtype) != REFERENCE_TYPE
|| TYPE_QUALS (TREE_TYPE (parmtype)) != TYPE_QUAL_CONST
|| !(same_type_ignoring_top_level_qualifiers_p
(TREE_TYPE (parmtype), ctx)))
- kind = DK_ERROR;
- if (kind)
- emit_diagnostic (kind, loc, opt, "defaulted %qD must have "
- "parameter type %<const %T&%>", fn, ctx);
- if (kind == DK_ERROR)
- ok = false;
+ saw_bad = true;
+ else
+ saw_byref = true;
+ }
+
+ if (saw_bad || (saw_byval && saw_byref))
+ {
+ if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
+ error_at (loc, "defaulted member %qD must have parameter type "
+ "%<const %T&%>", fn, ctx);
+ else if (saw_bad)
+ error_at (loc, "defaulted %qD must have parameters of either type "
+ "%<const %T&%> or %qT", fn, ctx, ctx);
+ else
+ error_at (loc, "defaulted %qD must have parameters of either type "
+ "%<const %T&%> or %qT, not both", fn, ctx, ctx);
+ ok = false;
}
/* We still need to deduce deleted/constexpr/noexcept and maybe return. */