cp/
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Feb 2008 09:28:48 +0000 (09:28 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Feb 2008 09:28:48 +0000 (09:28 +0000)
2008-02-11  Paolo Carlini  <pcarlini@suse.de>

PR c++/35077
* decl.c (groktypename): Check grokdeclarator return.

testsuite/
2008-02-11  Paolo Carlini  <pcarlini@suse.de>

PR c++/35077
* g++.dg/template/crash78.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132237 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 9dc4362..fe12e56 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-11  Paolo Carlini  <pcarlini@suse.de>
+
+       PR c++/35077
+       * decl.c (groktypename): Check grokdeclarator return.
+
 2008-02-10  Jason Merrill  <jason@redhat.com>
 
        PR c++/34094
index 6b80712..7294930 100644 (file)
@@ -3914,7 +3914,7 @@ groktypename (cp_decl_specifier_seq *type_specifiers,
   attrs = type_specifiers->attributes;
   type_specifiers->attributes = NULL_TREE;
   type = grokdeclarator (declarator, type_specifiers, TYPENAME, 0, &attrs);
-  if (attrs)
+  if (attrs && type != error_mark_node)
     {
       if (CLASS_TYPE_P (type))
        warning (OPT_Wattributes, "ignoring attributes applied to class type %qT "
index aa851c1..4ac1835 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-11  Paolo Carlini  <pcarlini@suse.de>
+
+       PR c++/35077
+       * g++.dg/template/crash78.C: New.
+
 2008-02-11  Uros Bizjak  <ubizjak@gmail.com>
 
        PR testsuite/35047
diff --git a/gcc/testsuite/g++.dg/template/crash78.C b/gcc/testsuite/g++.dg/template/crash78.C
new file mode 100644 (file)
index 0000000..10c36ef
--- /dev/null
@@ -0,0 +1,3 @@
+// PR c++/35077
+
+template<typename=int struct A __attribute((aligned(4))); // { dg-error "declaration|expected" }