URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [for-13.c] - Rev 826
Compare with Previous | Blame | View Log
// At one point in development, a typo disabled the remapping of the // for iteration variable as private. // { dg-do compile } // { dg-options "-fopenmp -fdump-tree-ompexp" } extern void bar(int); void foo(void) { int i; #pragma omp parallel for default(none) for (i = 0; i < 10; i++) bar(i); } // { dg-final { scan-tree-dump-times "omp_data_o" 0 "ompexp" } } // { dg-final { cleanup-tree-dump "ompexp" } }