diff options
author | Jason Merrill <jason@redhat.com> | 2008-12-03 16:42:22 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2008-12-03 16:42:22 -0500 |
commit | 64e12c68ef68fb2218f087fd615458c59bb6a5ff (patch) | |
tree | 7c2b394d09e329bf6ba41e2a2255295e593a2155 | |
parent | 0e318fccb81abd5aaa5df2ece132d2b59c3bcacb (diff) | |
download | gcc-64e12c68ef68fb2218f087fd615458c59bb6a5ff.zip gcc-64e12c68ef68fb2218f087fd615458c59bb6a5ff.tar.gz gcc-64e12c68ef68fb2218f087fd615458c59bb6a5ff.tar.bz2 |
re PR c++/38256 (ICE with "operator auto")
PR c++/38256
* parser.c (cp_parser_conversion_type_id): Diagnose
'operator auto' here.
* decl.c (grokdeclarator): Not here.
From-SVN: r142410
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/decl.c | 7 | ||||
-rw-r--r-- | gcc/cp/parser.c | 10 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/auto11.C | 12 |
5 files changed, 31 insertions, 6 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4987ca4..f8bf162 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,10 @@ 2008-12-03 Jason Merrill <jason@redhat.com> + PR c++/38256 + * parser.c (cp_parser_conversion_type_id): Diagnose + 'operator auto' here. + * decl.c (grokdeclarator): Not here. + PR c++/38380 * decl.c (grokdeclarator): Only set DECL_NONCONVERTING_P on explicit constructors. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 8714432..f2e12b3 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -8258,12 +8258,7 @@ grokdeclarator (const cp_declarator *declarator, { if (type_uses_auto (type)) { - if (sfk == sfk_conversion) - { - error ("invalid use of %<auto%> in conversion operator"); - return error_mark_node; - } - else if (!declarator->u.function.late_return_type) + if (!declarator->u.function.late_return_type) { error ("%qs function uses %<auto%> type specifier without" " late return type", name); diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 275a7f3..45abd24 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -8966,6 +8966,16 @@ cp_parser_conversion_type_id (cp_parser* parser) /*initialized=*/0, &attributes); if (attributes) cplus_decl_attributes (&type_specified, attributes, /*flags=*/0); + + /* Don't give this error when parsing tentatively. This happens to + work because we always parse this definitively once. */ + if (! cp_parser_uncommitted_to_tentative_parse_p (parser) + && type_uses_auto (type_specified)) + { + error ("invalid use of %<auto%> in conversion operator"); + return error_mark_node; + } + return type_specified; } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4a574eb..140c6ae 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2008-12-03 Jason Merrill <jason@redhat.com> + PR c++/38256 + * g++.dg/cpp0x/auto11.C: New test. + PR c++/38380 * g++.dg/cpp0x/initlist10.C: New test. * g++.old-deja/g++.eh/ctor1.C: Default ctor is a candidate too. diff --git a/gcc/testsuite/g++.dg/cpp0x/auto11.C b/gcc/testsuite/g++.dg/cpp0x/auto11.C new file mode 100644 index 0000000..bd21dae --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/auto11.C @@ -0,0 +1,12 @@ +// PR c++/38256 +// { dg-options "-std=c++0x" } + +template<int> struct A +{ + template<typename T> operator T(); +}; + +void foo() +{ + A<0>().operator auto(); // { dg-error "auto.*conversion" } +} |