URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [pr36790.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/36790 */ /* { dg-do compile } */ /* { dg-options "-fopenmp" } */ void foo (char b) { } void bar (char b) { foo (b); #pragma omp task default (shared) b = 0; } int main () { bar (0); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log