OSDN Git Service

* g++.old-deja/g++.abi/ptrflags.C: Use __pbase_type_info.
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 May 2000 16:58:47 +0000 (16:58 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 May 2000 16:58:47 +0000 (16:58 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34172 138bc75d-0d04-0410-961f-82ee72b054a4

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

index ccdc8dd..d71a66e 100644 (file)
@@ -1,5 +1,9 @@
 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.
        * g++.old-deja/g++.eh/catch12.C: New test.
 
index e4f68c6..2ac0941 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)