re PR fortran/83184 (Out of memory or ICE with option -fdec)
authorFritz Reese <fritzoreese@gmail.com>
Tue, 17 Jul 2018 16:02:03 +0000 (16:02 +0000)
committerFritz Reese <foreese@gcc.gnu.org>
Tue, 17 Jul 2018 16:02:03 +0000 (16:02 +0000)
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

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/dec_structure_23.f90

index bcedfc5c8bb3da999010fdc18765af71036a7900..ad07694db5d0cf24f06a725a2447a1f1d473ea20 100644 (file)
@@ -1,3 +1,8 @@
+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.
index d79ecc7ff213e5a0c485b853b9a86a2c9ed4bb54..78db344e0fc859adfdbcf0d518830eeb03c8d8be 100644 (file)
@@ -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