URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [static1.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/6073
// This testcase ICEd because finish_struct_bits changed
// A's and const A's TYPE_MODE from QI to BLK, but did
// not change a's DECL_MODE because its mode was not
// TYPE_MAIN_VARIANT.
struct A
{
static const A a;
~A ();
};
void bar (A x);
void foo ();
void
foo ()
{
bar (A::a);
}
Go to most recent revision | Compare with Previous | Blame | View Log