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_5.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! Tests WHERE satement with non-integer array in the mask expressionprogram where_5integer, dimension(5) :: areal(kind=8), dimension(5) :: ba = (/1, 2, 3, 4, 5/)b = (/1d0, 0d0, 1d0, 0d0, 1d0/)where (b .ne. 0d0)a(:) = a(:) + 10endwhereif (any (a .ne. (/11, 2, 13, 4, 15/))) call abortend program
Go to most recent revision | Compare with Previous | Blame | View Log
