From: Steven G. Kargl Date: Sat, 10 Mar 2018 19:00:49 +0000 (+0000) Subject: re PR fortran/84734 (Compiling codes with insane array dimensions gives an ICE after... X-Git-Tag: releases/gcc-6.5.0~453 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57b474bc42dcab6cacaa34ef1fa2e945a65fd90f;p=thirdparty%2Fgcc.git re PR fortran/84734 (Compiling codes with insane array dimensions gives an ICE after r257971) 2018-03-10 Steven G. Kargl PR fortran/84734 * arith.c (check_result, eval_intrinsic): If result overflows, pass the expression up the chain instead of a NULL pointer. 2018-03-10 Steven G. Kargl PR fortran/84734 * gfortran.dg/pr84734.f90: New test. From-SVN: r258419 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4149ac9637a1..840b0b0c21da 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2018-03-10 Steven G. Kargl + + PR fortran/84734 + * arith.c (check_result, eval_intrinsic): If result overflows, pass + the expression up the chain instead of a NULL pointer. + 2018-03-08 Steven G. Kargl PR fortran/64124 diff --git a/gcc/fortran/arith.c b/gcc/fortran/arith.c index e849f598df1d..b33ad2e80cc6 100644 --- a/gcc/fortran/arith.c +++ b/gcc/fortran/arith.c @@ -555,10 +555,10 @@ check_result (arith rc, gfc_expr *x, gfc_expr *r, gfc_expr **rp) val = ARITH_OK; } - if (val != ARITH_OK) - gfc_free_expr (r); - else + if (val == ARITH_OK || val == ARITH_OVERFLOW) *rp = r; + else + gfc_free_expr (r); return val; } @@ -1599,9 +1599,13 @@ eval_intrinsic (gfc_intrinsic_op op, if (rc != ARITH_OK) { gfc_error (gfc_arith_error (rc), &op1->where); + if (rc == ARITH_OVERFLOW) + goto done; return NULL; } +done: + gfc_free_expr (op1); gfc_free_expr (op2); return result; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d88730fa4325..baaf4088e38a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-03-10 Steven G. Kargl + + PR fortran/84734 + * gfortran.dg/pr84734.f90: New test. + 2018-03-10 H.J. Lu Backport from mainline diff --git a/gcc/testsuite/gfortran.dg/pr84734.f90 b/gcc/testsuite/gfortran.dg/pr84734.f90 new file mode 100644 index 000000000000..4b117ae43e73 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr84734.f90 @@ -0,0 +1,4 @@ +! { dg-do compile } +! PR fortran/84734 + integer :: b(huge(1_8)+1_8) = 0 ! { dg-error "Arithmetic overflow" } + end