URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr25857.C] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
/* { dg-options "-O2" } */
int foo();
int i;
struct A
{
~A() { if (this != (A*)(&i)) foo(); }
};
struct B
{
A a1, a2, a3, a4;
~B() { foo(); }
};
B b;
Go to most recent revision | Compare with Previous | Blame | View Log