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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [value_tests_f03.f90] - Rev 749

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

! { dg-do run }
program value_tests_f03
  use, intrinsic :: iso_c_binding
  real(c_double) :: myDouble
  interface
     subroutine value_test(myDouble) bind(c)
       use, intrinsic :: iso_c_binding
       real(c_double), value :: myDouble
     end subroutine value_test
  end interface

  myDouble = 9.0d0
  call value_test(myDouble)
end program value_tests_f03

subroutine value_test(myDouble) bind(c)
  use, intrinsic :: iso_c_binding
  real(c_double), value :: myDouble
  interface
     subroutine mySub(myDouble)
       use, intrinsic :: iso_c_binding
       real(c_double), value :: myDouble
     end subroutine mySub
  end interface

  myDouble = 10.0d0

  call mySub(myDouble)
end subroutine value_test

subroutine mySub(myDouble)
  use, intrinsic :: iso_c_binding
  real(c_double), value :: myDouble
  
  myDouble = 11.0d0
end subroutine mySub
  

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.