diff options
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/call.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/overload/ref1.C | 21 |
4 files changed, 36 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index eefa1e7..a0d2b06 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2004-03-09 Nathan Sidwell <nathan@codesourcery.com> + + PR c++/14397 + * call.c (convert_like_real): Build a const qualified temporary, + when testing ctor access. + 2004-03-09 Mark Mitchell <mark@codesourcery.com> * call.c (initialize_reference): Fix typo. diff --git a/gcc/cp/call.c b/gcc/cp/call.c index b43efcd..320159b 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -4209,9 +4209,10 @@ convert_like_real (conversion *convs, tree expr, tree fn, int argnum, if (convs->check_copy_constructor_p) /* Generate a temporary copy purely to generate the required diagnostics. */ - build_temp (build_dummy_object (totype), totype, - LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING, - &diagnostic_fn); + build_temp + (build_dummy_object + (build_qualified_type (totype, TYPE_QUAL_CONST)), + totype, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING, &diagnostic_fn); return expr; case ck_ambig: /* Call build_user_type_conversion again for the error. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bf41ef5..6f61dd7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-03-09 Nathan Sidwell <nathan@codesourcery.com> + + PR c++/14397 + * g++.dg/overload/ref1.C: New. + 2004-03-09 Giovanni Bajo <giovannibajo@gcc.gnu.org> PR c++/14409 diff --git a/gcc/testsuite/g++.dg/overload/ref1.C b/gcc/testsuite/g++.dg/overload/ref1.C new file mode 100644 index 0000000..e239d88 --- /dev/null +++ b/gcc/testsuite/g++.dg/overload/ref1.C @@ -0,0 +1,21 @@ +// Copyright (C) 2004 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 5 Mar 2004 <nathan@codesourcery.com> + +// Origin: schmid@snake.iap.physik.tu-darmstadt.de +// Bug 14397: Bogus access error. + +struct S { + S (int); + S(S const&); + private: + S(S&); +}; + +S foo() +{ + int result = 0; + + S s ((0,S (result))); + + return S (result); +} |