diff --git a/gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90 b/gcc/testsuite/gfortran.dg/max_expr.f90 similarity index 74% rename from gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90 rename to gcc/testsuite/gfortran.dg/max_expr.f90 index b818241a1f9..c00ad62f744 100644 --- a/gcc/testsuite/gfortran.dg/max_fmax_aarch64.f90 +++ b/gcc/testsuite/gfortran.dg/max_expr.f90 @@ -1,4 +1,4 @@ -! { dg-do compile { target aarch64*-*-* } } +! { dg-do compile } ! { dg-options "-O2 -fdump-tree-optimized" } subroutine foo (a, b, c, d, e, f, g, h) @@ -12,4 +12,4 @@ subroutine foof (a, b, c, d, e, f, g, h) end subroutine -! { dg-final { scan-tree-dump-times "\.FMAX " 14 "optimized" } } +! { dg-final { scan-tree-dump-times "MAX_EXPR " 14 "optimized" } } diff --git a/gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90 b/gcc/testsuite/gfortran.dg/min_expr.f90 similarity index 74% rename from gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90 rename to gcc/testsuite/gfortran.dg/min_expr.f90 index 009869b497d..5f32d5073c9 100644 --- a/gcc/testsuite/gfortran.dg/min_fmin_aarch64.f90 +++ b/gcc/testsuite/gfortran.dg/min_expr.f90 @@ -1,4 +1,4 @@ -! { dg-do compile { target aarch64*-*-* } } +! { dg-do compile } ! { dg-options "-O2 -fdump-tree-optimized" } subroutine foo (a, b, c, d, e, f, g, h) @@ -12,4 +12,4 @@ subroutine foof (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" } } +! { dg-final { scan-tree-dump-times "MIN_EXPR " 14 "optimized" } }