URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [static5.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/31809
// { dg-do run }
// { dg-options "-O2" }
struct S
{
unsigned v;
static inline S f (unsigned a);
};
inline S
S::f (unsigned a)
{
static S t = { a };
return t;
}
const static S s = S::f (26);
extern "C" void abort (void);
int
main ()
{
S t = s;
if (t.v != 26)
abort ();
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log