URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libgomp/] [testsuite/] [libgomp.fortran/] [allocatable5.f90] - Rev 320
Go to most recent revision | Compare with Previous | Blame | View Log
! PR fortran/42866! { dg-do run }program pr42866integer, allocatable :: a(:)allocate (a(16))a = 0!$omp parallel!$omp sections reduction(+:a)a = a + 1!$omp sectiona = a + 2!$omp end sections!$omp end parallelif (any (a.ne.3)) call abortdeallocate (a)end
Go to most recent revision | Compare with Previous | Blame | View Log
