Commit 11f2c78a by Patrick Palka

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
parent af718670
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>
* decl.c (poplevel): Use Use DECL_SOURCE_LOCATION and "%qD"
......
......@@ -8519,12 +8519,19 @@ check_return_expr (tree retval, bool *no_warning)
return NULL_TREE;
}
const tree saved_retval = retval;
if (processing_template_decl)
{
current_function_returns_value = 1;
if (check_for_bare_parameter_packs (retval))
retval = error_mark_node;
return retval;
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;
}
functype = TREE_TYPE (TREE_TYPE (current_function_decl));
......@@ -8568,14 +8575,10 @@ check_return_expr (tree retval, bool *no_warning)
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);
valtype = TREE_TYPE (result);
gcc_assert (valtype != NULL_TREE);
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
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%>");
}
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:
[...] For a function with a class return type, if the expression
......
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>
* gcc.target/alpha/pr66140.c (lpfc_bg_setup_bpl): Use unsigned
......
// 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" }
};
// 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" }
};
......@@ -5,7 +5,7 @@ enum bar {};
void operator+ (int, int);// { dg-error "" } .*
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&);
template <class T> class foo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment