URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.fortran/] [allocatable3.f90] - Rev 735
Compare with Previous | Blame | View Log
! { dg-do run }integer, allocatable :: a(:)integer :: ilogical :: ll = .false.if (allocated (a)) call abort!$omp parallel private (a) reduction (.or.:l)allocate (a (-7:-5))l = l.or..not.allocated (a)l = l.or.size(a).ne.3.or.size(a,1).ne.3a(:) = 0!$omp do private (a)do i = 1, 7a(:) = il = l.or.any (a.ne.i)end dol = l.or.any (a.ne.0)deallocate (a)!$omp end parallelend
