URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [pr47053.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
/* { dg-options "-O2 -fnon-call-exceptions" } */
struct A
{
int i;
virtual ~A ()
{}
};
struct B : virtual A
{};
struct C : public B
{
C ();
~C (){}
};
void foo ()
{
C c;
}
Go to most recent revision | Compare with Previous | Blame | View Log