re PR c++/48424 (C++0x parameter packs expansion problem)
authorJason Merrill <jason@redhat.com>
Thu, 26 May 2011 13:22:51 +0000 (09:22 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 26 May 2011 13:22:51 +0000 (09:22 -0400)
PR c++/48424
* decl.c (grokparms): Function parameter packs don't need to
go at the end.
* pt.c (type_unification_real): But they aren't deduced otherwise.

From-SVN: r174285

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/variadic111.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp0x/variadic41.C

index 582935c5c5bfc909fb57308e5b62c2a7129ad2ac..de154ae38472acf547b573254cc8d53d2b396c7c 100644 (file)
@@ -1,3 +1,10 @@
+2011-05-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/48424
+       * decl.c (grokparms): Function parameter packs don't need to
+       go at the end.
+       * pt.c (type_unification_real): But they aren't deduced otherwise.
+
 2011-05-25  Jason Merrill  <jason@redhat.com>
 
        PR c++/48536
index 8ab0c8afc7f532b0ccc0ff26b4dd054db2e12df7..a956dbb266b39d9c5040e6828f92301ed4b3e80f 100644 (file)
@@ -10551,12 +10551,6 @@ grokparms (tree parmlist, tree *parms)
            init = check_default_argument (decl, init);
        }
 
-      if (TREE_CODE (decl) == PARM_DECL
-          && FUNCTION_PARAMETER_PACK_P (decl)
-          && TREE_CHAIN (parm)
-          && TREE_CHAIN (parm) != void_list_node)
-        error ("parameter packs must be at the end of the parameter list");
-
       DECL_CHAIN (decl) = decls;
       decls = decl;
       result = tree_cons (init, type, result);
index c9c25cd2c55020bc976727ab8cb1af96ac45ae9c..ab48c8f7f9287f98eb61b03162c404b2b3773389 100644 (file)
@@ -14262,11 +14262,24 @@ type_unification_real (tree tparms,
   while (parms && parms != void_list_node
         && ia < nargs)
     {
-      if (TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
-        break;
-
       parm = TREE_VALUE (parms);
+
+      if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
+         && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
+       /* For a function parameter pack that occurs at the end of the
+          parameter-declaration-list, the type A of each remaining
+          argument of the call is compared with the type P of the
+          declarator-id of the function parameter pack.  */
+       break;
+
       parms = TREE_CHAIN (parms);
+
+      if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
+       /* For a function parameter pack that does not occur at the
+          end of the parameter-declaration-list, the type of the
+          parameter pack is a non-deduced context.  */
+       continue;
+
       arg = args[ia];
       ++ia;
       arg_expr = NULL;
index 089406dec33889d7d28d6e6515c6231b9df93dca..7e71ee230f6acd94c93e7dd5d3bfc458edb17ca7 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-26  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/cpp0x/variadic111.C: New.
+       * g++.dg/cpp0x/variadic41.C: Adjust.
+
 2011-05-26  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/48702
diff --git a/gcc/testsuite/g++.dg/cpp0x/variadic111.C b/gcc/testsuite/g++.dg/cpp0x/variadic111.C
new file mode 100644 (file)
index 0000000..378162e
--- /dev/null
@@ -0,0 +1,19 @@
+// PR c++/48424
+// { dg-options -std=c++0x }
+
+template<typename... Args1>
+struct S
+{
+  template<typename... Args2>
+    void f(Args1... args1, Args2&&... args2)
+    {
+    }
+};
+
+int main()
+{
+  S<int, double> s;
+  s.f(1,2.0,false,'a');
+}
+
+// { dg-final { scan-assembler "_ZN1SIIidEE1fIIbcEEEvidDpOT_" } }
index d209766d13259a3a69a67e088544f980c2774385..9cfd847f31861f7e96f04c2b415006ff5d51c2d9 100644 (file)
@@ -1,3 +1,14 @@
+// A function parameter pack is only deduced if it's at the end
 // { dg-options "-std=gnu++0x" }
 template<typename... Args>
-void f(const Args&... args, int oops); // { dg-error "end" }
+void f(const Args&... args, int oops);
+
+int main()
+{
+  f<>(1);
+  f(1);
+  f<int>(1,2);
+  f(1,2);                      // { dg-error "no match" }
+}
+
+// { dg-prune-output "note" }