+2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * decl.c (validate_constexpr_redeclaration): Change pair of errors
+ to error + inform.
+ * error.c (dump_function_decl): Save the constexpr specifier too.
+
2016-06-17 Jakub Jelinek <jakub@redhat.com>
* tree.c (builtin_valid_in_constant_expr_p): Test for
&& DECL_TEMPLATE_SPECIALIZATION (new_decl))
return true;
- error ("redeclaration %q+D differs in %<constexpr%>", new_decl);
- error ("from previous declaration %q+D", old_decl);
+ error_at (DECL_SOURCE_LOCATION (new_decl),
+ "redeclaration %qD differs in %<constexpr%> "
+ "from previous declaration", new_decl);
+ inform (DECL_SOURCE_LOCATION (old_decl),
+ "previous declaration %qD", old_decl);
return false;
}
return true;
int show_return = flags & TFF_RETURN_TYPE || flags & TFF_DECL_SPECIFIERS;
int do_outer_scope = ! (flags & TFF_UNQUALIFIED_NAME);
tree exceptions;
+ bool constexpr_p;
flags &= ~(TFF_UNQUALIFIED_NAME | TFF_TEMPLATE_NAME);
if (TREE_CODE (t) == TEMPLATE_DECL)
emitting an error about incompatible specifications. */
exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t));
+ /* Likewise for the constexpr specifier, in case t is a specialization. */
+ constexpr_p = DECL_DECLARED_CONSTEXPR_P (t);
+
/* Pretty print template instantiations only. */
if (DECL_USE_TEMPLATE (t) && DECL_TEMPLATE_INFO (t)
&& flag_pretty_templates)
else if (DECL_VIRTUAL_P (t))
pp_cxx_ws_string (pp, "virtual");
- if (DECL_DECLARED_CONSTEXPR_P (t))
+ if (constexpr_p)
pp_cxx_ws_string (pp, "constexpr");
}
+2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * g++.dg/cpp0x/constexpr-specialization.C: Adjust for dg-message
+ vs dg-error; test constexpr specifier too.
+
2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
* g++.dg/cpp0x/defaulted31.C: Adjust for dg-message vs dg-error.
template<typename T> constexpr int foo(T);
template<> int foo(int);
-template<> int foo(int); // { dg-error "previous" }
-template<> constexpr int foo(int); // { dg-error "redeclaration" }
+template<> int foo(int); // { dg-message "previous declaration 'int foo" }
+template<> constexpr int foo(int); // { dg-error "redeclaration 'constexpr int foo" }
template<typename T> int bar(T);
template<> constexpr int bar(int);
-template<> constexpr int bar(int); // { dg-error "previous" }
-template<> int bar(int); // { dg-error "redeclaration" }
+template<> constexpr int bar(int); // { dg-message "previous declaration 'constexpr int bar" }
+template<> int bar(int); // { dg-error "redeclaration 'int bar" }