URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr51575.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/51575
// { dg-do compile }
// { dg-options "-O -fnon-call-exceptions" }
#include <new>
struct S
{
S ()
{
for (int i = 0; i < 3; ++i)
new (&a[i]) double ();
}
double a[4];
};
void
foo ()
{
S s;
}
Go to most recent revision | Compare with Previous | Blame | View Log