arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / min_expr.f90
blob5f32d5073c9d96c84d931a5f8663524dbcbcb6fb
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-optimized" }
4 subroutine foo (a, b, c, d, e, f, g, h)
5 real (kind=8) :: a, b, c, d, e, f, g, h
6 a = min (a, b, c, d, e, f, g, h)
7 end subroutine
10 subroutine foof (a, b, c, d, e, f, g, h)
11 real (kind=4) :: a, b, c, d, e, f, g, h
12 a = min (a, b, c, d, e, f, g, h)
13 end subroutine
15 ! { dg-final { scan-tree-dump-times "MIN_EXPR " 14 "optimized" } }