URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libgomp/] [testsuite/] [libgomp.c++/] [loop-5.C] - Rev 859
Go to most recent revision | Compare with Previous | Blame | View Log
extern "C" void abort ();
int check;
int f1() { check |= 1; return 1; }
int f2() { check |= 2; return 11; }
int f3() { check |= 4; return 2; }
int a[12];
int main()
{
#pragma omp for
for (int i = f1(); i <= f2(); i += f3())
a[i] = 1;
for (int i = 0; i < 12; ++i)
if (a[i] != (i & 1))
abort ();
}
Go to most recent revision | Compare with Previous | Blame | View Log