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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [iso_fortran_env_3.f90] - Rev 424

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

! { dg-do run }
subroutine foo1 (x,y)
  use iso_fortran_env
  integer, intent(out) :: x, y

  x = numeric_storage_size
  y = character_storage_size
end

subroutine foo2 (x,y)
  use iso_fortran_env, foo => numeric_storage_size
  integer, intent(in) :: x, y

  if (foo /= x .or. character_storage_size /= y) call abort
end

subroutine foo3 (x,y)
  use iso_fortran_env, only : numeric_storage_size, character_storage_size
  integer, intent(in) :: x, y

  if (numeric_storage_size /= x .or. character_storage_size /= y) call abort
end

program test
  integer :: x, y
  call foo1(x,y)
  call foo2(x,y)
  call foo3(x,y)
end

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.