OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [intrinsic_anyall.f90] - Rev 338

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

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.