blob: 5f32d5073c9d96c84d931a5f8663524dbcbcb6fb [file] [log] [blame]
! { 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 = min (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 = min (a, b, c, d, e, f, g, h)
end subroutine
! { dg-final { scan-tree-dump-times "MIN_EXPR " 14 "optimized" } }