On 07/29/2014 10:28 AM, Paolo Carlini wrote:
+unify_arity (bool explain_p, int have, int wanted, bool lb_p = false)
I don't understand "lb_p".
@@ -16598,6 +16608,8 @@ type_unification_real (tree tparms, tree argvec; tree parmvec = make_tree_vec (1); + remaining_pack_p = true; + /* Allocate a TREE_VEC and copy in all of the arguments */ argvec = make_tree_vec (nargs - ia); for (i = 0; ia < nargs; ++ia, ++i)
Why would we get here in the too few args case? Won't we only hit this code if we had enough args for the non-pack parms?
Jason