From: Paolo Carlini Date: Wed, 7 May 2014 14:30:23 +0000 (+0000) Subject: re PR c++/61080 (Spurious no return statement warning with deleted operators) X-Git-Tag: releases/gcc-5.1.0~7729 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=ef2662bf65271c7723e797a11891d8085cd01fa5;p=gcc.git re PR c++/61080 (Spurious no return statement warning with deleted operators) /cp 2014-05-07 Paolo Carlini PR c++/61080 * pt.c (instantiate_decl): Avoid generating the body of a deleted function. /testsuite 2014-05-07 Paolo Carlini PR c++/61080 * g++.dg/cpp0x/deleted7.C: New. From-SVN: r210161 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d3eb4f2e10df..938fbf59f3fd 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2014-05-07 Paolo Carlini + + PR c++/61080 + * pt.c (instantiate_decl): Avoid generating the body of a + deleted function. + 2014-05-06 Paolo Carlini PR c++/60999 diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index d9e273e78da6..f23eec3504c8 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -19542,6 +19542,7 @@ instantiate_decl (tree d, int defer_ok, int saved_unevaluated_operand = cp_unevaluated_operand; int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings; bool external_p; + bool deleted_p; tree fn_context; bool nested; @@ -19623,11 +19624,17 @@ instantiate_decl (tree d, int defer_ok, args = gen_args; if (TREE_CODE (d) == FUNCTION_DECL) - pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE - || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern) - || DECL_DELETED_FN (code_pattern)); + { + deleted_p = DECL_DELETED_FN (code_pattern); + pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE + || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern) + || deleted_p); + } else - pattern_defined = ! DECL_IN_AGGR_P (code_pattern); + { + deleted_p = false; + pattern_defined = ! DECL_IN_AGGR_P (code_pattern); + } /* We may be in the middle of deferred access check. Disable it now. */ push_deferring_access_checks (dk_no_deferred); @@ -19671,7 +19678,10 @@ instantiate_decl (tree d, int defer_ok, elsewhere, we don't want to instantiate the entire data member, but we do want to instantiate the initializer so that we can substitute that elsewhere. */ - || (external_p && VAR_P (d))) + || (external_p && VAR_P (d)) + /* Handle here a deleted function too, avoid generating + its body (c++/61080). */ + || deleted_p) { /* The definition of the static data member is now required so we must substitute the initializer. */ @@ -19867,17 +19877,14 @@ instantiate_decl (tree d, int defer_ok, tf_warning_or_error, tmpl, /*integral_constant_expression_p=*/false); - if (DECL_STRUCT_FUNCTION (code_pattern)) - { - /* Set the current input_location to the end of the function - so that finish_function knows where we are. */ - input_location - = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus; - - /* Remember if we saw an infinite loop in the template. */ - current_function_infinite_loop - = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop; - } + /* Set the current input_location to the end of the function + so that finish_function knows where we are. */ + input_location + = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus; + + /* Remember if we saw an infinite loop in the template. */ + current_function_infinite_loop + = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop; } /* We don't need the local specializations any more. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 723967fa3bbf..97ce690bff92 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-05-07 Paolo Carlini + + PR c++/61080 + * g++.dg/cpp0x/deleted7.C: New. + 2014-05-07 Richard Biener PR tree-optimization/61034 diff --git a/gcc/testsuite/g++.dg/cpp0x/deleted7.C b/gcc/testsuite/g++.dg/cpp0x/deleted7.C new file mode 100644 index 000000000000..6afa9f7689c2 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/deleted7.C @@ -0,0 +1,36 @@ +// PR c++/61080 +// { dg-do compile { target c++11 } } +// { dg-options "-Wreturn-type" } + +struct AAA +{ + int a1, a2, a3; + void *p; +}; + +template +class WeakMapPtr +{ + public: + WeakMapPtr() : ptr(nullptr) {}; + bool init(AAA *cx); + private: + void *ptr; + WeakMapPtr(const WeakMapPtr &wmp) = delete; + WeakMapPtr &operator=(const WeakMapPtr &wmp) = delete; +}; + +template +bool WeakMapPtr::init(AAA *cx) +{ + ptr = cx->p; + return true; +} + +struct JSObject +{ + int blah; + float meh; +}; + +template class WeakMapPtr;