method.c (do_build_copy_constructor): Preserve cv qualifications when accessing sourc...
authorNathan Sidwell <nathan@codesourcery.com>
Thu, 30 Nov 2000 16:51:54 +0000 (16:51 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 30 Nov 2000 16:51:54 +0000 (16:51 +0000)
cp:
* method.c (do_build_copy_constructor): Preserve cv
qualifications when accessing source object members.
(do_build_assign_ref): Likewise. Remove separate diagnostics for
unnamed fields.
testsuite:
* g++.old-deja/g++.other/op3.C: New test.

From-SVN: r37896

gcc/cp/ChangeLog
gcc/cp/method.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/op3.C [new file with mode: 0644]

index 3fbdf3dbc9aed7584a5af0ab9893cf433839b8d1..8c3934fca20b724285185c6b9838b9c912110b48 100644 (file)
@@ -1,3 +1,10 @@
+2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * method.c (do_build_copy_constructor): Preserve cv
+       qualifications when accessing source object members.
+       (do_build_assign_ref): Likewise. Remove separate diagnostics for
+       unnamed fields.
+
 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
 
        * method.c (do_build_assign_ref): Construct appropriately
index 896656d4dc4f90cafc446addcbbab38931debbad..4f2e58d463d9bf638e1e9c19f941baec38ebf651 100644 (file)
@@ -2341,6 +2341,7 @@ do_build_copy_constructor (fndecl)
       tree binfos = TYPE_BINFO_BASETYPES (current_class_type);
       tree member_init_list = NULL_TREE;
       tree base_init_list = NULL_TREE;
+      int cvquals = CP_TYPE_QUALS (TREE_TYPE (parm));
       int i;
 
       /* Initialize all the base-classes.  */
@@ -2387,7 +2388,9 @@ do_build_copy_constructor (fndecl)
          else
            continue;
 
-         init = build (COMPONENT_REF, TREE_TYPE (field), init, field);
+         init = build (COMPONENT_REF,
+                       build_qualified_type (TREE_TYPE (field), cvquals),
+                       init, field);
          init = build_tree_list (NULL_TREE, init);
 
          member_init_list
@@ -2423,13 +2426,13 @@ do_build_assign_ref (fndecl)
       tree fields = TYPE_FIELDS (current_class_type);
       int n_bases = CLASSTYPE_N_BASECLASSES (current_class_type);
       tree binfos = TYPE_BINFO_BASETYPES (current_class_type);
+      int cvquals = CP_TYPE_QUALS (TREE_TYPE (parm));
       int i;
 
       for (i = 0; i < n_bases; ++i)
        {
          tree basetype = BINFO_TYPE (TREE_VEC_ELT (binfos, i));
-         tree p = build_qualified_type
-             (basetype, CP_TYPE_QUALS (TREE_TYPE (parm)));
+         tree p = build_qualified_type (basetype, cvquals);
 
          p = convert_to_reference
            (build_reference_type (p), parm,
@@ -2449,18 +2452,12 @@ do_build_assign_ref (fndecl)
 
          if (CP_TYPE_CONST_P (TREE_TYPE (field)))
            {
-             if (DECL_NAME (field))
-               cp_error ("non-static const member `%#D', can't use default assignment operator", field);
-             else
-               cp_error ("non-static const member in type `%T', can't use default assignment operator", current_class_type);
+              cp_error ("non-static const member `%#D', can't use default assignment operator", field);
              continue;
            }
          else if (TREE_CODE (TREE_TYPE (field)) == REFERENCE_TYPE)
            {
-             if (DECL_NAME (field))
-               cp_error ("non-static reference member `%#D', can't use default assignment operator", field);
-             else
-               cp_error ("non-static reference member in type `%T', can't use default assignment operator", current_class_type);
+             cp_error ("non-static reference member `%#D', can't use default assignment operator", field);
              continue;
            }
 
@@ -2487,7 +2484,9 @@ do_build_assign_ref (fndecl)
            continue;
 
          comp = build (COMPONENT_REF, TREE_TYPE (field), comp, field);
-         init = build (COMPONENT_REF, TREE_TYPE (field), init, field);
+         init = build (COMPONENT_REF,
+                       build_qualified_type (TREE_TYPE (field), cvquals),
+                       init, field);
 
          finish_expr_stmt (build_modify_expr (comp, NOP_EXPR, init));
        }
index dae0f957b4591363f3f5f31cacb464baf76806c0..ca0fc26f196a1b959dd7ddb75bfc0b1b9182297f 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.other/op3.C: New test.
+
 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.old-deja/g++.other/op2.C: New test.
diff --git a/gcc/testsuite/g++.old-deja/g++.other/op3.C b/gcc/testsuite/g++.old-deja/g++.other/op3.C
new file mode 100644 (file)
index 0000000..957b4d3
--- /dev/null
@@ -0,0 +1,63 @@
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 28 Nov 2000 <nathan@codesourcery.com>
+
+// Related to bug 91. We'd not preserve constness accessing a member of the
+// source type in copy ctor and assignment op.
+
+#include <stdio.h>
+
+int glob = 0;
+
+struct A
+{
+  A() {}
+
+  A( A& arg) 
+  { printf ("%s\n", __PRETTY_FUNCTION__); glob = 1;}
+
+  A( const A& arg)
+  { printf ("%s\n", __PRETTY_FUNCTION__); glob = 2;}
+
+  A& operator=( A& ) 
+  { printf ("%s\n", __PRETTY_FUNCTION__); glob = 3; return *this; }
+
+  A& operator=( const A& ) 
+  { printf ("%s\n", __PRETTY_FUNCTION__); glob = 4; return *this; }
+};
+
+struct B
+{
+  A a;
+  B () {}
+};
+
+void foo( A& )
+{
+  printf ("%s\n", __PRETTY_FUNCTION__); glob = 5;
+}
+
+void foo( const A& )
+{
+ printf ("%s\n", __PRETTY_FUNCTION__); glob = 6;
+}
+
+int main()
+{
+  const A a0;
+  glob = 0; printf ("A(cA) : ");  A a1(a0); if (glob != 2) return 1;
+  glob = 0; printf ("A(A ) : ");  A a2(a1); if (glob != 1) return 2;
+  
+  const B b0;
+  glob = 0; printf ("B(cB) : ");  B b1(b0); if (glob != 2) return 3;
+  glob = 0; printf ("B(B ) : ");  B b2(b1); if (glob != 2) return 4;
+
+  glob = 0; printf ("A= cA : ");  a1 = a0; if (glob != 4) return 5;
+  glob = 0; printf ("A= A : ");   a1 = a2; if (glob != 3) return 6;
+  glob = 0; printf ("B= cB : ");  b1 = b0; if (glob != 4) return 7;
+  glob = 0; printf ("B= B : ");   b1 = b2; if (glob != 4) return 8;
+
+  glob = 0; printf ("foo(cB): "); foo(b0.a); if (glob != 6) return 9;
+  glob = 0; printf ("foo(B ): "); foo(b2.a); if (glob != 5) return 10;
+
+  return 0;
+}