URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr19108.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/19108
// This used to abort due to not handing RANGE_EXPR in SRA.
// { dg-do compile }
// { dg-options "-O" }
struct A
{
int i[6];
A () : i() {}
};
struct B
{
A a;
B(const A& x) : a(x) {}
};
B b=A();
Go to most recent revision | Compare with Previous | Blame | View Log