re PR c++/84792 (ICE with broken typedef of a struct)
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 5 Apr 2018 17:05:03 +0000 (17:05 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 5 Apr 2018 17:05:03 +0000 (17:05 +0000)
/cp
2018-04-05  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/84792
* decl.c (grokdeclarator): Fix diagnostic about typedef name used
as nested-name-specifier, keep type and TREE_TYPE (decl) in sync.

/testsuite
2018-04-05  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/84792
* g++.dg/other/pr84792-1.C: New.
* g++.dg/other/pr84792-2.C: Likewise.

From-SVN: r259136

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/other/pr84792-1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/other/pr84792-2.C [new file with mode: 0644]

index a876dc9..0d60ed0 100644 (file)
@@ -1,3 +1,9 @@
+2018-04-05  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/84792
+       * decl.c (grokdeclarator): Fix diagnostic about typedef name used
+       as nested-name-specifier, keep type and TREE_TYPE (decl) in sync.
+
 2018-04-05  Jason Merrill  <jason@redhat.com>
 
        PR c++/82152 - ICE with class deduction and inherited ctor.
index b2e509e..489dcc0 100644 (file)
@@ -11766,15 +11766,16 @@ grokdeclarator (const cp_declarator *declarator,
       if (reqs)
        error_at (location_of (reqs), "requires-clause on typedef");
 
+      if (id_declarator && declarator->u.id.qualifying_scope)
+       {
+         error ("typedef name may not be a nested-name-specifier");
+         type = error_mark_node;
+       }
+
       if (decl_context == FIELD)
        decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
       else
        decl = build_decl (input_location, TYPE_DECL, unqualified_id, type);
-      if (id_declarator && declarator->u.id.qualifying_scope) {
-       error_at (DECL_SOURCE_LOCATION (decl), 
-                 "typedef name may not be a nested-name-specifier");
-       TREE_TYPE (decl) = error_mark_node;
-      }
 
       if (decl_context != FIELD)
        {
index 45fecfb..a94044e 100644 (file)
@@ -1,3 +1,9 @@
+2018-04-05  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/84792
+       * g++.dg/other/pr84792-1.C: New.
+       * g++.dg/other/pr84792-2.C: Likewise.
+
 2018-04-05  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/85193
diff --git a/gcc/testsuite/g++.dg/other/pr84792-1.C b/gcc/testsuite/g++.dg/other/pr84792-1.C
new file mode 100644 (file)
index 0000000..23df8ae
--- /dev/null
@@ -0,0 +1,6 @@
+struct A {};
+
+typedef struct
+{
+  virtual void foo() {}
+} A::B;  // { dg-error "typedef" }
diff --git a/gcc/testsuite/g++.dg/other/pr84792-2.C b/gcc/testsuite/g++.dg/other/pr84792-2.C
new file mode 100644 (file)
index 0000000..a393d57
--- /dev/null
@@ -0,0 +1,6 @@
+struct A {};
+
+typedef struct
+{
+  void foo() {}
+} A::B;  // { dg-error "typedef" }