Fix PR c++/18969 (invalid return statement diagnosed too late)

gcc/cp/ChangeLog:

	PR c++/18969
	* typeck.c (check_return_expr): Also do the basic return-value
	validity checking if processing_template_decl and yet types are
	not dependent.  Remove obsolete code.

gcc/testsuite/ChangeLog:

	PR c++/18969
	* g++.dg/template/pr18969.C: New test.
	* g++.dg/template/pr18969-2.C: New test.
	* g++.old-deja/g++.jason/overload.C: Remove return value in
	template function returning void.

From-SVN: r226236
This commit is contained in:
Patrick Palka 2015-07-26 17:04:31 +00:00
parent af7186706c
commit 11f2c78ae8
6 changed files with 57 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2015-07-26 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/18969
* typeck.c (check_return_expr): Also do the basic return-value
validity checking if processing_template_decl and yet types are
not dependent. Remove obsolete code.
2015-07-26 Paolo Carlini <paolo.carlini@oracle.com> 2015-07-26 Paolo Carlini <paolo.carlini@oracle.com>
* decl.c (poplevel): Use Use DECL_SOURCE_LOCATION and "%qD" * decl.c (poplevel): Use Use DECL_SOURCE_LOCATION and "%qD"

View File

@ -8519,11 +8519,18 @@ check_return_expr (tree retval, bool *no_warning)
return NULL_TREE; return NULL_TREE;
} }
const tree saved_retval = retval;
if (processing_template_decl) if (processing_template_decl)
{ {
current_function_returns_value = 1; current_function_returns_value = 1;
if (check_for_bare_parameter_packs (retval)) if (check_for_bare_parameter_packs (retval))
retval = error_mark_node; return error_mark_node;
if (WILDCARD_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl)))
|| (retval != NULL_TREE
&& type_dependent_expression_p (retval)))
return retval; return retval;
} }
@ -8568,14 +8575,10 @@ check_return_expr (tree retval, bool *no_warning)
functype = type; functype = type;
} }
/* When no explicit return-value is given in a function with a named
return value, the named return value is used. */
result = DECL_RESULT (current_function_decl); result = DECL_RESULT (current_function_decl);
valtype = TREE_TYPE (result); valtype = TREE_TYPE (result);
gcc_assert (valtype != NULL_TREE); gcc_assert (valtype != NULL_TREE);
fn_returns_value_p = !VOID_TYPE_P (valtype); fn_returns_value_p = !VOID_TYPE_P (valtype);
if (!retval && DECL_NAME (result) && fn_returns_value_p)
retval = result;
/* Check for a return statement with no return value in a function /* Check for a return statement with no return value in a function
that's supposed to return a value. */ that's supposed to return a value. */
@ -8660,6 +8663,13 @@ check_return_expr (tree retval, bool *no_warning)
warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>"); warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
} }
if (processing_template_decl)
{
/* We should not have changed the return value. */
gcc_assert (retval == saved_retval);
return retval;
}
/* The fabled Named Return Value optimization, as per [class.copy]/15: /* The fabled Named Return Value optimization, as per [class.copy]/15:
[...] For a function with a class return type, if the expression [...] For a function with a class return type, if the expression

View File

@ -1,3 +1,11 @@
2015-07-26 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/18969
* g++.dg/template/pr18969.C: New test.
* g++.dg/template/pr18969-2.C: New test.
* g++.old-deja/g++.jason/overload.C: Remove return value in
template function returning void.
2015-07-26 Uros Bizjak <ubizjak@gmail.com> 2015-07-26 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/alpha/pr66140.c (lpfc_bg_setup_bpl): Use unsigned * gcc.target/alpha/pr66140.c (lpfc_bg_setup_bpl): Use unsigned

View File

@ -0,0 +1,11 @@
// PR c++/18969
// { dg-do compile { target c++14 } }
template <typename T>
struct A
{
auto *f1 () { return; } // { dg-error "return-statement" }
auto &f2 () { return; } // { dg-error "return-statement" }
auto f3 () { return; } // { dg-bogus "return-statement" }
};

View File

@ -0,0 +1,14 @@
// PR c++/18969
template <typename T>
struct A
{
int f1 () { return; } // { dg-error "return-statement" }
void f2 () { return 5; } // { dg-error "return-statement" }
T *f3 () { return; } // { dg-error "return-statement" }
typename T::f &f4 () { return; } // { dg-error "return-statement" }
T f5 () { return; } // { dg-bogus "return-statement" }
void f6 () { return (T)true; } // { dg-bogus "return-statement" }
typename T::f f7 () { return; } // { dg-bogus "return-statement" }
};

View File

@ -5,7 +5,7 @@ enum bar {};
void operator+ (int, int);// { dg-error "" } .* void operator+ (int, int);// { dg-error "" } .*
void operator+ (bar&, int); void operator+ (bar&, int);
template <class T> void operator+ (int b, T& t) { return b; } template <class T> void operator+ (int b, T& t) { return; }
void operator+ (int, bar&); void operator+ (int, bar&);
template <class T> class foo template <class T> class foo