URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [appendix-a/] [a.13.1.c] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ int dequeue (float *a); void work (int i, float *a); void a13 (float *x, float *y) { int ix_next, iy_next; #pragma omp parallel shared(x, y) private(ix_next, iy_next) { #pragma omp critical (xaxis) ix_next = dequeue (x); work (ix_next, x); #pragma omp critical (yaxis) iy_next = dequeue (y); work (iy_next, y); } }
Go to most recent revision | Compare with Previous | Blame | View Log