re PR c++/39637 (ICE on ill-formed sizeof(<parameter-pack>) in variadic template)
authorDodji Seketeli <dodji@redhat.com>
Wed, 8 Apr 2009 09:39:51 +0000 (09:39 +0000)
committerDodji Seketeli <dodji@gcc.gnu.org>
Wed, 8 Apr 2009 09:39:51 +0000 (11:39 +0200)
gcc/cp/ChangeLog:
2009-04-08  Dodji Seketeli  <dodji@redhat.com>
    PR c++/39637
    * parser.c (cp_parser_enumerator_definition): Make sure the
    initializer of the enumerator doesn't contain any bare parameter pack.

gcc/testsuite/ChangeLog
2009-04-08  Dodji Seketeli  <dodji@redhat.com>
    PR c++/39637
    * g++.dg/cpp0x/variadic-crash2.C: New test.

From-SVN: r145717

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/variadic-crash2.C [new file with mode: 0644]

index 264fea4..22d1ced 100644 (file)
@@ -1,3 +1,9 @@
+2009-04-08  Dodji Seketeli  <dodji@redhat.com>
+
+       PR c++/39637
+       * parser.c (cp_parser_enumerator_definition): Make sure the
+       initializer of the enumerator doesn't contain any bare parameter pack.
+
 2009-04-07  Jason Merrill  <jason@redhat.com>
 
        PR c++/34691
index 28f47c8..18d62cc 100644 (file)
@@ -12011,6 +12011,11 @@ cp_parser_enumerator_definition (cp_parser* parser, tree type)
   else
     value = NULL_TREE;
 
+  /* If we are processing a template, make sure the initializer of the
+     enumerator doesn't contain any bare template parameter pack.  */
+  if (check_for_bare_parameter_packs (value))
+    value = error_mark_node;
+
   /* Create the enumerator.  */
   build_enumerator (identifier, value, type);
 }
index 1e1206e..23564bd 100644 (file)
@@ -1,3 +1,8 @@
+2009-04-08  Dodji Seketeli  <dodji@redhat.com>
+
+       PRc++/39637
+       * g++.dg/cpp0x/variadic-crash2.C: New test.
+
 2009-04-08  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/38863
diff --git a/gcc/testsuite/g++.dg/cpp0x/variadic-crash2.C b/gcc/testsuite/g++.dg/cpp0x/variadic-crash2.C
new file mode 100644 (file)
index 0000000..d1913b9
--- /dev/null
@@ -0,0 +1,20 @@
+// Contributed by Dodji Seketeli <dodji@redhat.com>
+// Origin: PR c++/39637
+// { dg-options "-std=gnu++0x" }
+// { dg-do "compile" }
+
+template<class... Types>
+void
+f(Types...)
+{
+  enum {e = sizeof(Types)}; // { dg-error "parameter packs not expanded with '...'" }
+  enum {e1 = sizeof...(Types)};
+}
+
+int
+main()
+{
+    f(0);
+}
+
+// { dg-message "note" "Types" { target *-*-* } 10 }