* g++.old-deja/g++.abi/ptrflags.C: Use __pbase_type_info.
authorNathan Sidwell <nathan@codesourcery.com>
Thu, 25 May 2000 16:58:47 +0000 (16:58 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 25 May 2000 16:58:47 +0000 (16:58 +0000)
From-SVN: r34172

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

index ccdc8ddfd58fcf2d40ca3d62b90b8223094e8373..d71a66e58eec32ae5ebdaf0d72b4103fb4f3e960 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.abi/ptrflags.C: Use __pbase_type_info.
+
 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.old-deja/g++.eh/catch11.C: New test.
index e4f68c617c80c1603343cceecf54e44d30d93c95..2ac09416acb00b89f0d0877d1b4a6ece96987a93 100644 (file)
@@ -14,8 +14,8 @@ using namespace abi;
 
 int expect (int flags, type_info const &info)
 {
-  __pointer_type_info const *ptr =
-      dynamic_cast <__pointer_type_info const *> (&info);
+  __pbase_type_info const *ptr =
+      dynamic_cast <__pbase_type_info const *> (&info);
   if (!ptr)
     return 0;
   if (ptr->quals != flags)