URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [libgomp/] [testsuite/] [libgomp.c/] [loop-3.c] - Rev 855
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ extern void abort (void); volatile int count; static int test(void) { return ++count > 0; } int main() { int i; #pragma omp for for (i = 0; i < 10; ++i) { if (test()) continue; abort (); } if (i != count) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log