PR fortran/95053 - ICE in gfc_divide(): Bad basic type
authorHarald Anlauf <anlauf@gmx.de>
Mon, 11 May 2020 19:27:11 +0000 (21:27 +0200)
committerHarald Anlauf <anlauf@gmx.de>
Mon, 11 May 2020 19:27:11 +0000 (21:27 +0200)
The fix for PR 93499 introduced a too strict check in gfc_divide
that could trigger errors in the early parsing phase.  Relax the
check and defer to a later stage.

gcc/fortran/

2020-05-11  Harald Anlauf  <anlauf@gmx.de>

PR fortran/95053
* arith.c (gfc_divide): Do not error out if operand 2 is
non-numeric.  Defer checks to later stage.

gcc/testsuite/

2020-05-11  Harald Anlauf  <anlauf@gmx.de>

PR fortran/95053
* gfortran.dg/pr95053.f: New test.

gcc/fortran/ChangeLog
gcc/fortran/arith.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr95053.f [new file with mode: 0644]

index a1a625a..9f7b60e 100644 (file)
@@ -1,3 +1,9 @@
+2020-05-11  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95053
+       * arith.c (gfc_divide): Do not error out if operand 2 is
+       non-numeric.  Defer checks to later stage.
+
 2020-05-11  Tobias Burnus  <tobias@codesourcery.com>
 
        PR fortran/94672
index 1cd0867..dd72f44 100644 (file)
@@ -1828,7 +1828,8 @@ gfc_divide (gfc_expr *op1, gfc_expr *op2)
            rc = ARITH_DIV0;
          break;
        default:
-         gfc_internal_error ("gfc_divide(): Bad basic type");
+         /* basic type is non-numeric, handle this elsewhere.  */
+         break;
        }
       if (rc == ARITH_DIV0)
        {
index 158cf38..99d0683 100644 (file)
@@ -1,3 +1,8 @@
+2020-05-11  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95053
+       * gfortran.dg/pr95053.f: New test.
+
 2020-05-11  Uroš Bizjak  <ubizjak@gmail.com>
 
        PR target/95046
diff --git a/gcc/testsuite/gfortran.dg/pr95053.f b/gcc/testsuite/gfortran.dg/pr95053.f
new file mode 100644 (file)
index 0000000..1d15c66
--- /dev/null
@@ -0,0 +1,7 @@
+! { dg-do compile }
+! PR fortran/95053 - ICE in gfc_divide(): Bad basic type
+!
+ 123  FORMAT ('A'/'B')
+ 132  FORMAT (A/
+     +     ' B')
+      END