2018-07-17 Fritz Reese <fritzoreese@gmail.com>
gcc/testsuite/ChangeLog:
PR fortran/83184
* gfortran.dg/dec_structure_23.f90: Oops, "un-fix" error messages.
From-SVN: r262828
+2018-07-17 Fritz Reese <fritzoreese@gmail.com>
+
+ PR fortran/83184
+ * gfortran.dg/dec_structure_23.f90: Oops, "un-fix" error messages.
+
2018-07-17 Will Schmidt <will_schmidt@vnet.ibm.com>
* gcc.target/powerpc/fold-vec-unpack-char.c: New.
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