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/] [intrinsic_anyall.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test the ANY and ALL intrinsics
program anyall
implicit none
logical, dimension(3, 3) :: a
logical, dimension(3) :: b
character(len=10) line
a = .false.
if (any(a)) call abort
a(1, 1) = .true.
a(2, 3) = .true.
if (.not. any(a)) call abort
b = any(a, 1)
if (.not. b(1)) call abort
if (b(2)) call abort
if (.not. b(3)) call abort
b = .false.
write (line, 9000) any(a,1)
read (line, 9000) b
if (.not. b(1)) call abort
if (b(2)) call abort
if (.not. b(3)) call abort
a = .true.
if (.not. all(a)) call abort
a(1, 1) = .false.
a(2, 3) = .false.
if (all(a)) call abort
b = all(a, 1)
if (b(1)) call abort
if (.not. b(2)) call abort
if (b(3)) call abort
b = .false.
write (line, 9000) all(a,1)
read (line, 9000) b
if (b(1)) call abort
if (.not. b(2)) call abort
if (b(3)) call abort
9000 format (9L1)
end program
Go to most recent revision | Compare with Previous | Blame | View Log