]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR c++/35138 (g++ rejects valid code)
authorJakub Jelinek <jakub@redhat.com>
Wed, 13 Feb 2008 22:30:43 +0000 (23:30 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 13 Feb 2008 22:30:43 +0000 (23:30 +0100)
PR c++/35138
* parser.c (cp_parser_pseudo_destructor_name): If next tokens
are not identifier :: ~, return before calling cp_parser_type_name.

* g++.dg/template/member8.C: New test.

Co-Authored-By: Manuel López-Ibáñez <manu@gcc.gnu.org>
From-SVN: r132298

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/member8.C [new file with mode: 0644]

index 38f951032e6b6dfb3ede8aefe8d84b61399ef2b1..c237abda40dedce529c722890764ec7b9c9581e6 100644 (file)
@@ -1,3 +1,10 @@
+2008-02-13  Jakub Jelinek  <jakub@redhat.com>
+           Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
+
+       PR c++/35138
+       * parser.c (cp_parser_pseudo_destructor_name): If next tokens
+       are not identifier :: ~, return before calling cp_parser_type_name.
+
 2008-02-13  Jason Merrill  <jason@redhat.com>
 
        PR c++/34962, c++/34937, c++/34939
index a6489832d11232228adbc10dfd501ae40f51732e..5f215742d49e7ed70a02b1d157e5078c51e848b6 100644 (file)
@@ -5164,24 +5164,26 @@ cp_parser_pseudo_destructor_name (cp_parser* parser,
      additional qualification.  */
   else if (cp_lexer_next_token_is_not (parser->lexer, CPP_COMPL))
     {
+      /* At this point, we're looking for "type-name :: ~".  The type-name
+        must not be a class-name, since this is a pseudo-destructor.  So,
+        it must be either an enum-name, or a typedef-name -- both of which
+        are just identifiers.  So, we peek ahead to check that the "::"
+        and "~" tokens are present; if they are not, then we can avoid
+        calling type_name.  */
+      if (cp_lexer_peek_token (parser->lexer)->type != CPP_NAME
+         || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_SCOPE
+         || cp_lexer_peek_nth_token (parser->lexer, 3)->type != CPP_COMPL)
+       {
+         cp_parser_error (parser, "non-scalar type");
+         return;
+       }
+
       /* Look for the type-name.  */
       *scope = TREE_TYPE (cp_parser_type_name (parser));
 
       if (*scope == error_mark_node)
        return;
 
-      /* If we don't have ::~, then something has gone wrong.  Since
-        the only caller of this function is looking for something
-        after `.' or `->' after a scalar type, most likely the
-        program is trying to get a member of a non-aggregate
-        type.  */
-      if (cp_lexer_next_token_is_not (parser->lexer, CPP_SCOPE)
-         || cp_lexer_peek_nth_token (parser->lexer, 2)->type != CPP_COMPL)
-       {
-         cp_parser_error (parser, "request for member of non-aggregate type");
-         return;
-       }
-
       /* Look for the `::' token.  */
       cp_parser_require (parser, CPP_SCOPE, "`::'");
     }
index 3e660c99b6722b7a9bffd9c4f665033c42aed91e..0eac359748fa81787820c0fa5aad78a06b250523 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/35138
+       * g++.dg/template/member8.C: New test.
+
 2008-02-13  Michael Matz  <matz@suse.de>
 
        * gcc.dg/pr35065.c: Fix testcase warnings.
diff --git a/gcc/testsuite/g++.dg/template/member8.C b/gcc/testsuite/g++.dg/template/member8.C
new file mode 100644 (file)
index 0000000..074c655
--- /dev/null
@@ -0,0 +1,25 @@
+// PR c++/35138
+// { dg-do compile }
+
+namespace N1 { struct A { }; }
+namespace N2 { struct A { }; }
+using namespace N1;
+using namespace N2;
+
+template <typename T> int
+foo (T const &t)
+{
+  return t.A;
+}
+
+struct B
+{
+  int A;
+};
+
+int
+main ()
+{
+  B b;
+  foo (b);
+}