Retro68/gcc/gcc/testsuite/gfortran.dg/max_expr.f90
Wolfgang Thaller 6fbf4226da gcc-9.1
2019-06-20 20:10:10 +02:00

16 lines
401 B
Fortran

! { dg-do compile }
! { dg-options "-O2 -fdump-tree-optimized" }
subroutine foo (a, b, c, d, e, f, g, h)
real (kind=8) :: a, b, c, d, e, f, g, h
a = max (a, b, c, d, e, f, g, h)
end subroutine
subroutine foof (a, b, c, d, e, f, g, h)
real (kind=4) :: a, b, c, d, e, f, g, h
a = max (a, b, c, d, e, f, g, h)
end subroutine
! { dg-final { scan-tree-dump-times "MAX_EXPR " 14 "optimized" } }