From: Jason Merrill Date: Sat, 18 Sep 2010 21:22:10 +0000 (-0400) Subject: call.c (compare_ics): Do lvalue/rvalue reference binding comparison for ck_list,... X-Git-Tag: upstream/12.2.0~90114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6eb208a69cd0b7d93c3f22f4298062ccdc2f7c83;p=platform%2Fupstream%2Fgcc.git call.c (compare_ics): Do lvalue/rvalue reference binding comparison for ck_list, too. * call.c (compare_ics): Do lvalue/rvalue reference binding comparison for ck_list, too. From-SVN: r164401 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c412f0c..cedf531 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2010-09-18 Jason Merrill + + * call.c (compare_ics): Do lvalue/rvalue reference binding + comparison for ck_list, too. + 2010-09-15 Jason Merrill * semantics.c (finish_id_expression): Diagnose use of function diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 2b9b848..89ab757 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -6859,9 +6859,8 @@ compare_ics (conversion *ics1, conversion *ics2) /* We couldn't make up our minds; try to figure it out below. */ } - if (ics1->ellipsis_p || ics1->kind == ck_list) - /* Both conversions are ellipsis conversions or both are building a - std::initializer_list. */ + if (ics1->ellipsis_p) + /* Both conversions are ellipsis conversions. */ return 0; /* User-defined conversion sequence U1 is a better conversion sequence @@ -6870,16 +6869,24 @@ compare_ics (conversion *ics1, conversion *ics2) ond standard conversion sequence of U1 is better than the second standard conversion sequence of U2. */ - if (ics1->user_conv_p) + /* Handle list-conversion with the same code even though it isn't always + ranked as a user-defined conversion and it doesn't have a second + standard conversion sequence; it will still have the desired effect. + Specifically, we need to do the reference binding comparison at the + end of this function. */ + + if (ics1->user_conv_p || ics1->kind == ck_list) { conversion *t1; conversion *t2; for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next) - if (t1->kind == ck_ambig || t1->kind == ck_aggr) + if (t1->kind == ck_ambig || t1->kind == ck_aggr + || t1->kind == ck_list) break; for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next) - if (t2->kind == ck_ambig || t2->kind == ck_aggr) + if (t2->kind == ck_ambig || t2->kind == ck_aggr + || t2->kind == ck_list) break; if (t1->kind != t2->kind) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4fb1fa0..56d0fbd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-09-18 Jason Merrill + + * g++.dg/cpp0x/initlist44.C: New. + 2010-09-18 Richard Guenther PR tree-optimization/45709 diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist44.C b/gcc/testsuite/g++.dg/cpp0x/initlist44.C new file mode 100644 index 0000000..fbe0ea3 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/initlist44.C @@ -0,0 +1,5 @@ +// { dg-options -std=c++0x } + +#include + +auto value = std::initializer_list{ 1, 2, 3 };