From: Harald Anlauf Date: Sat, 21 Dec 2019 20:25:43 +0000 (+0000) Subject: re PR fortran/92990 (INVALID code with NULLIFY – partially misleading error message... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5fd86aba81ec7dbd50e588909f81771841c03bd;p=gcc.git re PR fortran/92990 (INVALID code with NULLIFY – partially misleading error message "If bounds remapping is specified at (1), the pointer target shall not be NULL") 2019-12-21 Harald Anlauf PR fortran/92990 * match.c (gfc_match_nullify): Check for valid pointer object. Reject bounds remapping. PR fortran/92990 * gfortran.dg/pr92990.f90: New test. From-SVN: r279698 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index dee20f6fdee..63a6de616b4 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2019-12-21 Harald Anlauf + + PR fortran/92990 + * match.c (gfc_match_nullify): Check for valid pointer object. + Reject bounds remapping. + 2019-12-21  Paul Thomas   PR fortran/92753 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index d3e3abcb700..b467d99b1a4 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -4588,6 +4588,23 @@ gfc_match_nullify (void) goto cleanup; } + /* Check for valid array pointer object. Bounds remapping is not + allowed with NULLIFY. */ + if (p->ref) + { + gfc_ref *remap = p->ref; + for (; remap; remap = remap->next) + if (!remap->next && remap->type == REF_ARRAY + && remap->u.ar.type != AR_FULL) + break; + if (remap) + { + gfc_error ("NULLIFY does not allow bounds remapping for " + "pointer object at %C"); + goto cleanup; + } + } + /* build ' => NULL() '. */ e = gfc_get_null_expr (&gfc_current_locus); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1f1dec5c480..0068dc0cf20 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-12-21 Harald Anlauf + + PR fortran/92990 + * gfortran.dg/pr92990.f90: New test. + 2019-12-21  Paul Thomas   PR fortran/92753 diff --git a/gcc/testsuite/gfortran.dg/pr92990.f90 b/gcc/testsuite/gfortran.dg/pr92990.f90 new file mode 100644 index 00000000000..a996715684e --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr92990.f90 @@ -0,0 +1,12 @@ +! { dg-do compile } +! PR fortran/92990 +! Verify fix of error message for NULLIFY vs. pointer assignment (PR70853) +program p + integer, pointer :: x(:) + type t + integer, pointer :: y(:) + end type t + type(t) :: z + nullify (x(1:2)) ! { dg-error "does not allow bounds remapping" } + nullify (z%y(:)) ! { dg-error "does not allow bounds remapping" } +end