URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-static4.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options -std=c++0x }
// { dg-do run }
extern "C" void abort ();
extern int ar[2];
int f()
{
if (ar[0] != 42 || ar[1] != 0)
abort ();
return 1;
}
int i = f();
int ar[2] = { 42, i };
int main()
{
}
Go to most recent revision | Compare with Previous | Blame | View Log