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/] [integer_select_1.f90] - Diff between revs 303 and 338

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

Rev 303 Rev 338
INTEGER         :: I = 1
INTEGER         :: I = 1
SELECT CASE (I)
SELECT CASE (I)
   CASE (-3:-5)  ! Can never be matched
   CASE (-3:-5)  ! Can never be matched
      CALL abort
      CALL abort
   CASE (1)
   CASE (1)
      CONTINUE
      CONTINUE
   CASE DEFAULT
   CASE DEFAULT
      CALL abort
      CALL abort
END SELECT
END SELECT
I = -3
I = -3
SELECT CASE (I)
SELECT CASE (I)
   CASE (-3:-5) ! Can never be matched
   CASE (-3:-5) ! Can never be matched
      CALL abort
      CALL abort
   CASE (1)
   CASE (1)
      CONTINUE
      CONTINUE
   CASE DEFAULT
   CASE DEFAULT
      CONTINUE
      CONTINUE
END SELECT
END SELECT
I = -5
I = -5
SELECT CASE (I)
SELECT CASE (I)
   CASE (-3:-5) ! Can never be matched
   CASE (-3:-5) ! Can never be matched
      CALL abort
      CALL abort
   CASE (-5)
   CASE (-5)
      CONTINUE
      CONTINUE
   CASE DEFAULT
   CASE DEFAULT
      CALL abort
      CALL abort
END SELECT
END SELECT
END
END
 
 

powered by: WebSVN 2.1.0

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