aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / minmax_integer.f90
blob5b6be38c7055ce4e8620cf75ec7d8a182436b24f
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-optimized" }
4 subroutine foo (a, b, c, d, e, f, g, h)
5 integer (kind=4) :: a, b, c, d, e, f, g, h
6 a = min (a, b, c, d, e, f, g, h)
7 end subroutine
9 subroutine foof (a, b, c, d, e, f, g, h)
10 integer (kind=4) :: a, b, c, d, e, f, g, h
11 a = max (a, b, c, d, e, f, g, h)
12 end subroutine
14 ! { dg-final { scan-tree-dump-times "MIN_EXPR" 7 "optimized" } }
15 ! { dg-final { scan-tree-dump-times "MAX_EXPR" 7 "optimized" } }