ptrflags.C: Adjust rtti member names.
authorNathan Sidwell <nathan@codesourcery.com>
Wed, 9 Aug 2000 09:52:47 +0000 (09:52 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Wed, 9 Aug 2000 09:52:47 +0000 (09:52 +0000)
* g++.old-deja/g++.abi/ptrflags.C: Adjust rtti member names.
* g++.old-deja/g++.abi/vmihint.C: Likewise.

From-SVN: r35587

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C
gcc/testsuite/g++.old-deja/g++.abi/vmihint.C

index be6ce31bcfbbc1b799e988a4427f26d8d8739d75..92686a8ca08cdcc4492f65d073e6f9fdb5084abf 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.abi/ptrflags.C: Adjust rtti member names.
+       * g++.old-deja/g++.abi/vmihint.C: Likewise.
+
 2000-08-09  Alexandre Oliva  <aoliva@redhat.com>
 
        * gcc.c-torture/execute/20000808-1.c: New test.
index 2ac09416acb00b89f0d0877d1b4a6ece96987a93..57f05e879309a8c1f8dc58258989d97c3fd29b7f 100644 (file)
@@ -18,7 +18,7 @@ int expect (int flags, type_info const &info)
       dynamic_cast <__pbase_type_info const *> (&info);
   if (!ptr)
     return 0;
-  if (ptr->quals != flags)
+  if (ptr->qualifier_flags != flags)
     return 0;
   return 1;
 }
index 28a269c3522c95d638b8fbdf5ac2589cf07ba36f..622947433bda1c53fbab91211d0188263855585b 100644 (file)
@@ -36,7 +36,7 @@ int expect (int flags, type_info const &info)
       dynamic_cast <__vmi_class_type_info const *> (&info);
   if (!ptr)
     return 0;
-  if (ptr->vmi_flags != flags)
+  if (ptr->flags != flags)
     return 0;
   return 1;
 }