From: Jason Merrill Date: Fri, 21 Feb 2014 14:57:07 +0000 (-0500) Subject: re PR c++/60216 ([c++11] Trouble with deleted template functions) X-Git-Tag: releases/gcc-4.9.0~770 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d4af074534b4249f2bb2ddc936e7e5c5703e289;p=thirdparty%2Fgcc.git re PR c++/60216 ([c++11] Trouble with deleted template functions) PR c++/60216 * pt.c (register_specialization): Copy DECL_DELETED_FN to clones. (check_explicit_specialization): Don't clone. From-SVN: r208004 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9ddd8f81bc89..5a91dcfb3a40 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,9 @@ 2014-02-21 Jason Merrill + PR c++/60216 + * pt.c (register_specialization): Copy DECL_DELETED_FN to clones. + (check_explicit_specialization): Don't clone. + PR c++/60219 * pt.c (coerce_template_parms): Bail if argument packing fails. diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index bf41e8650984..a39444104d6c 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -1440,6 +1440,8 @@ register_specialization (tree spec, tree tmpl, tree args, bool is_friend, = DECL_DECLARED_INLINE_P (fn); DECL_SOURCE_LOCATION (clone) = DECL_SOURCE_LOCATION (fn); + DECL_DELETED_FN (clone) + = DECL_DELETED_FN (fn); } check_specialization_namespace (tmpl); @@ -2770,15 +2772,16 @@ check_explicit_specialization (tree declarator, It's just the name of an instantiation. But, it's not a request for an instantiation, either. */ SET_DECL_IMPLICIT_INSTANTIATION (decl); - else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl)) - /* This is indeed a specialization. In case of constructors - and destructors, we need in-charge and not-in-charge - versions in V3 ABI. */ - clone_function_decl (decl, /*update_method_vec_p=*/0); /* Register this specialization so that we can find it again. */ decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0); + + /* A 'structor should already have clones. */ + gcc_assert (decl == error_mark_node + || !(DECL_CONSTRUCTOR_P (decl) + || DECL_DESTRUCTOR_P (decl)) + || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl))); } } diff --git a/gcc/testsuite/g++.dg/cpp0x/deleted3.C b/gcc/testsuite/g++.dg/cpp0x/deleted3.C new file mode 100644 index 000000000000..67836773af34 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/deleted3.C @@ -0,0 +1,11 @@ +// PR c++/60216 +// { dg-require-effective-target c++11 } + +struct A +{ + template A(T) = delete; +}; + +template<> A::A(int) {} + +A a(0);