URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr47290.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/47290
// { dg-do compile }
struct V
{
V (int = 0);
~V ()
{
for (;;)
;
}
int size ();
};
struct S
{
V a, b;
S () : b (a.size ()) {}
} s;
Go to most recent revision | Compare with Previous | Blame | View Log