URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [where_4.f90] - Rev 303
Compare with Previous | Blame | View Log
! Tests WHERE statement with a data dependencyprogram where_4integer, dimension(5) :: ainteger, dimension(5) :: ba = (/1, 2, 3, 4, 5/)b = (/1, 0, 1, 0, 1/)where (b .ne. 0)a(:) = a(5:1:-1)endwhereif (any (a .ne. (/5, 2, 3, 4, 1/))) call abortend program
