view gcc/testsuite/gfortran.dg/f2c_8.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900 (2018-10-25)
parents 04ced10e8804
children
line wrap: on
line source
! { dg-do compile }
! { dg-options "-ff2c" }
! PR 25392
! Verify that the type of the result variable matches the declared
! type of the function.  The actual type of the function may be
! different for f2c calling conventions.
real function goo () result (foo)
  real x
  foo = sign(foo, x)
end

real function foo ()
  real x
  foo = sign(foo, x)
end