From: Fritz Reese Date: Tue, 17 Jul 2018 16:02:03 +0000 (+0000) Subject: re PR fortran/83184 (Out of memory or ICE with option -fdec) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5485812caf9865ec09ff5391e0794bbaffd20751;p=gcc.git re PR fortran/83184 (Out of memory or ICE with option -fdec) 2018-07-17 Fritz Reese gcc/testsuite/ChangeLog: PR fortran/83184 * gfortran.dg/dec_structure_23.f90: Oops, "un-fix" error messages. From-SVN: r262828 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bcedfc5c8bb..ad07694db5d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-07-17 Fritz Reese + + PR fortran/83184 + * gfortran.dg/dec_structure_23.f90: Oops, "un-fix" error messages. + 2018-07-17 Will Schmidt * gcc.target/powerpc/fold-vec-unpack-char.c: New. diff --git a/gcc/testsuite/gfortran.dg/dec_structure_23.f90 b/gcc/testsuite/gfortran.dg/dec_structure_23.f90 index d79ecc7ff21..78db344e0fc 100644 --- a/gcc/testsuite/gfortran.dg/dec_structure_23.f90 +++ b/gcc/testsuite/gfortran.dg/dec_structure_23.f90 @@ -13,8 +13,8 @@ program p integer :: nn real :: rr structure /s/ - integer x(n) /1/ ! { dg-error "must have an explicit shape" } - integer xx(nn) /1/ ! { dg-error "must have an explicit shape" } - integer xxx(rr) /1.0/ ! { dg-error "must have an explicit shape" } + integer x(n) /1/ ! { dg-error "array with nonconstant bounds" } + integer xx(nn) /1/ ! { dg-error "array with nonconstant bounds" } + integer xxx(rr) /1.0/ ! { dg-error "array with nonconstant bounds" } end structure end