URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [pr35662.f90] - Rev 694
Compare with Previous | Blame | View Log
! PR target/35662! { dg-do run }! { dg-options "-O1" }subroutine f(x, y, z)real, intent (in) :: xreal, intent (out) :: y, zy = sin (x)z = cos (x)end subroutine fprogram pr35662real :: x, y, zx = 3.1415926535897932384626433832795029call f (x, y, z)if (abs (y) > 1.0e-5 .or. abs (z + 1.0) > 1.0e-5) call abortx = x / 2.0call f (x, y, z)if (abs (y - 1.0) > 1.0e-5 .or. abs (z) > 1.0e-5) call abortend program pr35662
