re PR fortran/88658 (Intrinsic MAX1 returns a REAL result, should be INTEGER.)
authorThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 6 Jan 2019 12:48:58 +0000 (12:48 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 6 Jan 2019 12:48:58 +0000 (12:48 +0000)
2019-01-06  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/88658
* gfortran.h: Add macro gfc_real_4_kind
* simplify.c (simplify_min_max): Special case for the types of
AMAX0, AMIN0, MAX1 and MIN1, which actually change the types of
their arguments.

2019-01-06  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/88658
* gfortran.dg/min_max_type_2.f90: New test.

From-SVN: r267609

gcc/fortran/ChangeLog
gcc/fortran/gfortran.h
gcc/fortran/simplify.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/min_max_type_2.f90 [new file with mode: 0644]

index 2b8da1dd919b9ddfcf14100512ca0b8f6db59326..cf869f8785a598841449da2666cfb50ecb1e76e2 100644 (file)
@@ -1,3 +1,11 @@
+2019-01-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/88658
+       * gfortran.h: Add macro gfc_real_4_kind
+       * simplify.c (simplify_min_max): Special case for the types of
+       AMAX0, AMIN0, MAX1 and MIN1, which actually change the types of
+       their arguments.
+
 2019-01-05  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/88009
index fd8b3537253a305bf954070ab4051e83a22ea0eb..0b281105fb458a781cbe908d81b3ae2bd204c9f3 100644 (file)
@@ -2967,6 +2967,7 @@ extern int gfc_character_storage_size;
 
 #define gfc_logical_4_kind 4
 #define gfc_integer_4_kind 4
+#define gfc_real_4_kind 4
 
 /* symbol.c */
 void gfc_clear_new_implicit (void);
index 22313901bd8d1c32d06c3f1bdf33930e4372df2e..fdaf3cb47409882ec7632b584b44a98ef46cc9a4 100644 (file)
@@ -4963,6 +4963,8 @@ static gfc_expr *
 simplify_min_max (gfc_expr *expr, int sign)
 {
   gfc_actual_arglist *arg, *last, *extremum;
+  gfc_expr *tmp, *ret;
+  const char *fname;
 
   last = NULL;
   extremum = NULL;
@@ -4995,7 +4997,27 @@ simplify_min_max (gfc_expr *expr, int sign)
   if (expr->value.function.actual->next != NULL)
     return NULL;
 
-  return gfc_copy_expr (expr->value.function.actual->expr);
+  /* Handle special cases of specific functions (min|max)1 and
+     a(min|max)0.  */
+
+  tmp = expr->value.function.actual->expr;
+  fname = expr->value.function.isym->name;
+
+  if ((tmp->ts.type != BT_INTEGER || tmp->ts.kind != gfc_integer_4_kind)
+      && (strcmp (fname, "min1") == 0 || strcmp (fname, "max1") == 0))
+    {
+      ret = gfc_convert_constant (tmp, BT_INTEGER, gfc_integer_4_kind);
+    }
+  else if ((tmp->ts.type != BT_REAL || tmp->ts.kind != gfc_real_4_kind)
+          && (strcmp (fname, "amin0") == 0 || strcmp (fname, "amax0") == 0))
+    {
+      ret = gfc_convert_constant (tmp, BT_REAL, gfc_real_4_kind);
+    }
+  else
+    ret = gfc_copy_expr (tmp);
+
+  return ret;
+
 }
 
 
index f27b3a3e5387ca5f4ecb36ddad3a79278bb9b1dc..fcbbd7432aed9dfb977eb47cad0b6011a4aa6eef 100644 (file)
@@ -1,3 +1,8 @@
+2019-01-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/88658
+       * gfortran.dg/min_max_type_2.f90: New test.
+
 2019-01-06  Jakub Jelinek  <jakub@redhat.com>
 
        PR c/88363
diff --git a/gcc/testsuite/gfortran.dg/min_max_type_2.f90 b/gcc/testsuite/gfortran.dg/min_max_type_2.f90
new file mode 100644 (file)
index 0000000..e2b6d67
--- /dev/null
@@ -0,0 +1,18 @@
+! { dg-do  run }
+! PR 88658 - make sure the types for min1, max1, amax0 and amin0 are
+! correct when simplified
+
+program main
+  real :: RVCOMP
+  character (len=12) :: line
+  integer :: n
+
+  RVCOMP = MAX1(2.3, 3.1, 4.4) / 5 
+  if (rvcomp /= 0.) stop 1
+  rvcomp = min1(2.3, 3.1, 5.1) / 5
+  if (rvcomp /= 0.) stop 2
+  write (unit=line, fmt='(F12.5)') amax0(42, 21, 7)
+  if (line /= '    42.00000') stop 3
+  write (unit=line, fmt='(F12.5)') amin0(42,21,7)
+  if (line /= '     7.00000') stop 4
+end program main