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)
commit1422c2e4462c9b7c44aa035ac56af77565556181
tree82151c03fa3cbf1471eb1e30ad5b6575cc2011b5
parentaa2c978400f3b3ca6e9f2d18598a379589e77ba0
PR fortran/95053 - ICE in gfc_divide(): Bad basic type

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]