lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / max_expr.f90
blobc00ad62f744ffd2b4f258b3611e6d10d3bcf95e3
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 = max (a, b, c, d, e, f, g, h)
7 end subroutine
9 subroutine foof (a, b, c, d, e, f, g, h)
10 real (kind=4) :: a, b, c, d, e, f, g, h
11 a = max (a, b, c, d, e, f, g, h)
12 end subroutine
15 ! { dg-final { scan-tree-dump-times "MAX_EXPR " 14 "optimized" } }