This is the mail archive of the gcc@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: Cannot build recent snapshots on UnixWare 2.1.2


> 
> 
>   In message <m0xPcpS-0004edC@ocean.lucon.org>you write:
>   > Fri Oct 17 08:28:19 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
>   > 
>   > 	* frame.c (count_fdes, add_fdes): Skip linked once FDE entries.
> Jason installed this patch this morning.

Thanks.

> 
>   > Sat Oct 11 17:24:53 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
>   > 
>   > 	* toplev.c (rest_of_compilation): Don't defer thunks.
> I don't know what the status of this patch is -- Jason?
> 

Just try -O -fvtable-thunks on any platforms without
ASM_OUTPUT_MI_THUNK. Alpha and MIPS are 2 of them.

# gcc -O -fvtable-thunks t.cc


-- 
H.J. Lu (hjl@gnu.ai.mit.edu)
----t.cc--
class B
{
public:
  virtual ~B () {};
};
 
class A : virtual B
{
public:
  A() {}
  ~A ();
};
 
A::~A ()
{
}
 
main ()
{
  A os;
}


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