OSDN Git Service

* gfortran.h (struct gfc_symbol): Add equiv_built.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.fortran-torture / execute / where_4.f90
1 ! Tests WHERE statement with a data dependency
2 program where_4
3    integer, dimension(5) :: a
4    integer, dimension(5) :: b
5
6    a = (/1, 2, 3, 4, 5/)
7    b = (/1, 0, 1, 0, 1/)
8    
9    where (b .ne. 0)
10       a(:) = a(5:1:-1)
11    endwhere
12    if (any (a .ne. (/5, 2, 3, 4, 1/))) call abort
13 end program