+2018-08-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
+
+ * gfortran.dg/max_fmax_aarch64.f90: Rename to...
+ * gfortran.dg/max_expr.f90: ...this.
+ * gfortran.dg/min_fmin_aarch64.f90: Rename to...
+ * gfortran.dg/min_expr.f90: ...this.
+
2018-08-22 Richard Sandiford <richard.sandiford@arm.com>
PR tree-optimization/86725
--- /dev/null
+! { 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" } }
+++ /dev/null
-! { dg-do compile { target aarch64*-*-* } }
-! { 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 "\.FMAX " 14 "optimized" } }
--- /dev/null
+! { 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" } }
+++ /dev/null
-! { dg-do compile { target aarch64*-*-* } }
-! { 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 "\.FMIN " 14 "optimized" } }