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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [where_nested_1.f90] - Rev 823

Go to most recent revision | Compare with Previous | Blame | View Log

! { dg-do compile }
! PR 25423: Nested WHERE constructs.
program nested_where

    implicit none
    integer :: a(4)
    logical :: mask1(4) = (/.TRUE., .TRUE., .FALSE., .FALSE./), &
               mask2(4) = (/.TRUE., .FALSE., .TRUE., .FALSE./)

    where (mask1)
        where (mask2)
            a = 1
        elsewhere
            a = 2
        end where
    elsewhere
        where (mask2)
            a = 3
        elsewhere
            a = 4
        end where
    end where

    print *, a

end program nested_where

Go to most recent revision | 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.