re PR c++/52743 (g++-4.7.0 seg faults on overload functions.)
authorJason Merrill <jason@redhat.com>
Thu, 29 Mar 2012 14:14:00 +0000 (10:14 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 29 Mar 2012 14:14:00 +0000 (10:14 -0400)
PR c++/52743
* call.c (compare_ics): Handle ck_aggr like ck_list.

From-SVN: r185963

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/initlist-array3.C [new file with mode: 0644]

index b8a6b5c..166f559 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-29  Jason Merrill  <jason@redhat.com>
+
+       PR c++/52743
+       * call.c (compare_ics): Handle ck_aggr like ck_list.
+
 2012-03-28  Jason Merrill  <jason@redhat.com>
 
        PR c++/52746
index 88733f5..3c3dabb 100644 (file)
@@ -7620,7 +7620,7 @@ compare_ics (conversion *ics1, conversion *ics2)
      Specifically, we need to do the reference binding comparison at the
      end of this function.  */
 
-  if (ics1->user_conv_p || ics1->kind == ck_list)
+  if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
     {
       conversion *t1;
       conversion *t2;
index 954e8fb..dbb5cae 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-29  Jason Merrill  <jason@redhat.com>
+
+       PR c++/52743
+       * g++.dg/cpp0x/initlist-array3.C: New.
+
 2012-03-28  Jason Merrill  <jason@redhat.com>
 
        PR c++/52746
diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist-array3.C b/gcc/testsuite/g++.dg/cpp0x/initlist-array3.C
new file mode 100644 (file)
index 0000000..1a94f4e
--- /dev/null
@@ -0,0 +1,10 @@
+// PR c++/52743
+// { dg-do compile { target c++11 } }
+
+void composite (int const (&) [2]);
+void composite (int const (&) [3]);
+
+int main ()
+{
+  composite({0,1});            // { dg-error "ambiguous" }
+}