OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [where_16.f90] - Diff between revs 154 and 816

Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
! Check whether nested WHEREs work
! Check whether nested WHEREs work
program where_16
program where_16
   integer :: a(9)
   integer :: a(9)
   integer :: b(9)
   integer :: b(9)
   integer :: c(9)
   integer :: c(9)
   a = (/0, 0, 0, 1, 1, 1, 2, 2, 2/)
   a = (/0, 0, 0, 1, 1, 1, 2, 2, 2/)
   b = (/0, 1, 2, 0, 1, 2, 0, 1, 2/)
   b = (/0, 1, 2, 0, 1, 2, 0, 1, 2/)
   c = (/0, 0, 0, 0, 0, 0, 0, 0, 0/)
   c = (/0, 0, 0, 0, 0, 0, 0, 0, 0/)
   where (a .eq. 0)
   where (a .eq. 0)
     where (b .eq. 0)
     where (b .eq. 0)
       c = 1
       c = 1
     else where (b .eq. 1)
     else where (b .eq. 1)
       c = 2
       c = 2
     else where
     else where
       c = 3
       c = 3
     endwhere
     endwhere
   elsewhere (a .eq. 1)
   elsewhere (a .eq. 1)
     where (b .eq. 0)
     where (b .eq. 0)
       c = 4
       c = 4
     else where (b .eq. 1)
     else where (b .eq. 1)
       c = 5
       c = 5
     else where
     else where
       c = 6
       c = 6
     endwhere
     endwhere
   elsewhere
   elsewhere
     where (b .eq. 0)
     where (b .eq. 0)
       c = 7
       c = 7
     else where (b .eq. 1)
     else where (b .eq. 1)
       c = 8
       c = 8
     else where
     else where
       c = 9
       c = 9
     endwhere
     endwhere
   endwhere
   endwhere
   if (any (c .ne. (/1, 2, 3, 4, 5, 6, 7, 8, 9/))) &
   if (any (c .ne. (/1, 2, 3, 4, 5, 6, 7, 8, 9/))) &
     call abort
     call abort
end program
end program
 
 

powered by: WebSVN 2.1.0

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