URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr45316.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-O1 -ftree-pre -fnon-call-exceptions" }
struct A
{
int i;
};
struct B : A
{
int i[6];
B (int = 0) : A ()
{
m ();
}
int m ();
};
struct C : B
{
};
void
foo ()
{
new C ();
}
Go to most recent revision | Compare with Previous | Blame | View Log