URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [pr35751.c] - Rev 689
Compare with Previous | Blame | View Log
/* PR c/35751 */ /* { dg-do compile } */ /* { dg-options "-fopenmp" } */ void foo (int i) { extern int a[i]; /* { dg-error "must have no linkage|storage size of" } */ static int b[i]; /* { dg-error "storage size of" } */ #pragma omp parallel { a[0] = 0; b[0] = 0; } #pragma omp parallel shared (a, b) { a[0] = 0; b[0] = 0; } #pragma omp parallel private (a, b) { a[0] = 0; b[0] = 0; } #pragma omp parallel firstprivate (a, b) { a[0] = 0; b[0] = 0; } }