Change AArch64 specific FMAX/FMIN tests into generic MAX_EXPR/MIN_EXPR tests
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Wed, 22 Aug 2018 15:12:05 +0000 (15:12 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Wed, 22 Aug 2018 15:12:05 +0000 (15:12 +0000)
gfortran now always uses MAX_EXPR/MIN_EXPR for MAX/MIN intrinsics, so the
AArch64 specific FMAX/FMIN tests are no longer valid.

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.

From-SVN: r263778

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/max_expr.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90 [deleted file]
gcc/testsuite/gfortran.dg/min_expr.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90 [deleted file]

index 55312e89897356265b536e5e2766171f478da6d8..078810eeb6fc343d93b7e52b49b5ee1f90fae434 100644 (file)
@@ -1,3 +1,10 @@
+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
diff --git a/gcc/testsuite/gfortran.dg/max_expr.f90 b/gcc/testsuite/gfortran.dg/max_expr.f90
new file mode 100644 (file)
index 0000000..c00ad62
--- /dev/null
@@ -0,0 +1,15 @@
+! { 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" } }
diff --git a/gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90 b/gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90
deleted file mode 100644 (file)
index b818241..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-! { 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" } }
diff --git a/gcc/testsuite/gfortran.dg/min_expr.f90 b/gcc/testsuite/gfortran.dg/min_expr.f90
new file mode 100644 (file)
index 0000000..5f32d50
--- /dev/null
@@ -0,0 +1,15 @@
+! { 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" } }
diff --git a/gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90 b/gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90
deleted file mode 100644 (file)
index 009869b..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-! { 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" } }