This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[g++] fixup for cxxabi.h changes


tested x86/linux

2002-08-01  Benjamin Kosnik   <bkoz@redhat.com>

	* g++.old-deja/g++.abi/ptrflags.C (expect): Change
	__qualifier_flags to __flags.

Index: ptrflags.C
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/g++.old-deja/g++.abi/ptrflags.C,v
retrieving revision 1.5
diff -c -p -r1.5 ptrflags.C
*** ptrflags.C	16 Nov 2000 04:14:37 -0000	1.5
--- ptrflags.C	1 Aug 2002 16:45:01 -0000
*************** int expect (int flags, std::type_info co
*** 18,24 ****
        dynamic_cast <abi::__pbase_type_info const *> (&info);
    if (!ptr)
      return 0;
!   if (ptr->__qualifier_flags != flags)
      return 0;
    return 1;
  }
--- 18,24 ----
        dynamic_cast <abi::__pbase_type_info const *> (&info);
    if (!ptr)
      return 0;
!   if (ptr->__flags != flags)
      return 0;
    return 1;
  }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]