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]

Re: C++ PATCH to ENABLE_NEW_GXX_ABI


Convenient that the auto-builder uses something other than x86 linux.  :)

2001-01-19  Jason Merrill  <jason@redhat.com>

	* decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.

*** decl2.c.~1~	Fri Jan 19 14:22:49 2001
--- decl2.c	Fri Jan 19 20:48:52 2001
*************** int warn_ctor_dtor_privacy = 1;
*** 204,213 ****
--- 204,217 ----
  /* True if we want to implement vtables using "thunks".
     The default is off.  */
  
+ #if ENABLE_NEW_GXX_ABI
+ int flag_vtable_thunks = 1;
+ #else
  #ifndef DEFAULT_VTABLE_THUNKS
  #define DEFAULT_VTABLE_THUNKS 0
  #endif
  int flag_vtable_thunks = DEFAULT_VTABLE_THUNKS;
+ #endif
  
  /* Nonzero means generate separate instantiation control files and juggle
     them at link time.  */

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