From: Jason Merrill Date: Mon, 23 May 2011 15:32:10 +0000 (-0400) Subject: re PR c++/48617 ([C++0x] Problem with non-type template parameters and decltype) X-Git-Tag: releases/gcc-4.7.0~6587 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08dc4c3dd7dd26d711a100abb6b0fe78dc712f99;p=thirdparty%2Fgcc.git re PR c++/48617 ([C++0x] Problem with non-type template parameters and decltype) PR c++/48617 * pt.c (invalid_nontype_parm_type_p): Allow DECLTYPE_TYPE. From-SVN: r174070 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 168f43a245d2..a1b0aec802d0 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2011-05-23 Jason Merrill + + PR c++/48617 + * pt.c (invalid_nontype_parm_type_p): Allow DECLTYPE_TYPE. + 2011-05-23 Nathan Froyd * call.c (build_over_call): Tweak call to check_function_arguments. diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index d72596f55255..380b21efbca9 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -18089,6 +18089,8 @@ invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain) return 0; else if (TREE_CODE (type) == TYPENAME_TYPE) return 0; + else if (TREE_CODE (type) == DECLTYPE_TYPE) + return 0; if (complain & tf_error) error ("%q#T is not a valid type for a template constant parameter", type); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index be8b2eac0364..47f0dac09912 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2011-05-23 Jason Merrill + + * g++.dg/cpp0x/decltype27.C: New. + 2011-05-23 Richard Guenther * gcc.dg/tree-ssa/forwprop-11.c: Adjust and un-XFAIL. diff --git a/gcc/testsuite/g++.dg/cpp0x/decltype27.C b/gcc/testsuite/g++.dg/cpp0x/decltype27.C new file mode 100644 index 000000000000..cb962ada525e --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/decltype27.C @@ -0,0 +1,9 @@ +// PR c++/48617 +// { dg-options -std=c++0x } + +template // # +struct A {}; + +A a; + +int main() {}