Commit 09ef33c1 by Steven G. Kargl

re PR fortran/83633 (gfortran internal compiler error for explicit-shape array…

re PR fortran/83633 (gfortran internal compiler error for explicit-shape array with non-constant bounds)

2018-02-25  Steven G. Kargl  <kargl@gcc.gnu.org>

	PR fortran/83633
	* decl.c (variable_decl): Check that an explicit-shape-array with
	nonconstant bounds is allowed.

2018-02-25  Steven G. Kargl  <kargl@gcc.gnu.org>

	PR fortran/83633
	* gfortran.dg/explicit_shape_1.f90: New test.
	* gfortran.dg/automatic_module_variable.f90: Update regex.
	* gfortran.dg/bad_automatic_objects_1.f90: Ditto.
	* gfortran.dg/constant_shape.f90: Ditto.
	* gfortran.dg/dec_structure_23.f90: Ditto.
	* gfortran.dg/pr78240.f90: Ditto.

From-SVN: r257971
parent 8fba26f4
2018-02-25 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/83633
* decl.c (variable_decl): Check that an explicit-shape-array with
nonconstant bounds is allowed.
2018-02-25 Paul Thomas <pault@gcc.gnu.org> 2018-02-25 Paul Thomas <pault@gcc.gnu.org>
PR fortran/84523 PR fortran/84523
......
...@@ -2304,7 +2304,10 @@ variable_decl (int elem) ...@@ -2304,7 +2304,10 @@ variable_decl (int elem)
/* At this point, we know for sure if the symbol is PARAMETER and can thus /* At this point, we know for sure if the symbol is PARAMETER and can thus
determine (and check) whether it can be implied-shape. If it determine (and check) whether it can be implied-shape. If it
was parsed as assumed-size, change it because PARAMETERs can not was parsed as assumed-size, change it because PARAMETERs can not
be assumed-size. */ be assumed-size.
An explicit-shape-array cannot appear under several conditions.
That check is done here as well. */
if (as) if (as)
{ {
if (as->type == AS_IMPLIED_SHAPE && current_attr.flavor != FL_PARAMETER) if (as->type == AS_IMPLIED_SHAPE && current_attr.flavor != FL_PARAMETER)
...@@ -2326,6 +2329,50 @@ variable_decl (int elem) ...@@ -2326,6 +2329,50 @@ variable_decl (int elem)
m = MATCH_ERROR; m = MATCH_ERROR;
goto cleanup; goto cleanup;
} }
/* F2018:C830 (R816) An explicit-shape-spec whose bounds are not
constant expressions shall appear only in a subprogram, derived
type definition, BLOCK construct, or interface body. */
if (as->type == AS_EXPLICIT
&& gfc_current_state () != COMP_BLOCK
&& gfc_current_state () != COMP_DERIVED
&& gfc_current_state () != COMP_FUNCTION
&& gfc_current_state () != COMP_INTERFACE
&& gfc_current_state () != COMP_SUBROUTINE)
{
gfc_expr *e;
bool not_constant = false;
for (int i = 0; i < as->rank; i++)
{
e = gfc_copy_expr (as->lower[i]);
gfc_resolve_expr (e);
gfc_simplify_expr (e, 0);
if (e && (e->expr_type != EXPR_CONSTANT))
{
not_constant = true;
break;
}
gfc_free_expr (e);
e = gfc_copy_expr (as->upper[i]);
gfc_resolve_expr (e);
gfc_simplify_expr (e, 0);
if (e && (e->expr_type != EXPR_CONSTANT))
{
not_constant = true;
break;
}
gfc_free_expr (e);
}
if (not_constant)
{
gfc_error ("Explicit shaped array with nonconstant bounds at %C");
m = MATCH_ERROR;
goto cleanup;
}
}
} }
char_len = NULL; char_len = NULL;
......
2018-02-25 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/83633
* gfortran.dg/explicit_shape_1.f90: New test.
* gfortran.dg/automatic_module_variable.f90: Update regex.
* gfortran.dg/bad_automatic_objects_1.f90: Ditto.
* gfortran.dg/constant_shape.f90: Ditto.
* gfortran.dg/dec_structure_23.f90: Ditto.
* gfortran.dg/pr78240.f90: Ditto.
2018-02-25 Paul Thomas <pault@gcc.gnu.org> 2018-02-25 Paul Thomas <pault@gcc.gnu.org>
PR fortran/84523 PR fortran/84523
......
! { dg-do compile } ! { dg-do compile }
! Tests fix for PR15976 ! Tests fix for PR15976
! !
! Error message update with patch for PR fortran/83633
!
module sd module sd
integer, parameter :: n = 20 integer, parameter :: n = 20
integer :: i(n) integer :: i(n)
integer :: j(m) ! { dg-error "must have constant shape" } integer :: j(m) ! { dg-error "array with nonconstant bounds" }
integer, pointer :: p(:) integer, pointer :: p(:)
integer, allocatable :: q(:) integer, allocatable :: q(:)
contains contains
......
...@@ -5,16 +5,18 @@ ...@@ -5,16 +5,18 @@
! !
! Contributed by Joost VandeVondele <jv244@cam.ac.uk> ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
! !
! Error message update with patch for PR fortran/83633
!
module foo module foo
integer :: i integer :: i
end module foo end module foo
module bar module bar
use foo use foo
integer, dimension (i) :: j ! { dg-error "must have constant shape" } integer, dimension (i) :: j ! { dg-error "array with nonconstant bounds" }
character (len = i) :: c1 ! { dg-error "must have constant character length" } character (len = i) :: c1 ! { dg-error "must have constant character length" }
end module bar end module bar
program foobar program foobar
use foo use foo
integer, dimension (i) :: k ! { dg-error "must have constant shape" } integer, dimension (i) :: k ! { dg-error "array with nonconstant bounds" }
character (len = i) :: c2 ! { dg-error "must have constant character length" } character (len = i) :: c2 ! { dg-error "must have constant character length" }
end program foobar end program foobar
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
! PR 78392: ICE in gfc_trans_auto_array_allocation, at fortran/trans-array.c:5979 ! PR 78392: ICE in gfc_trans_auto_array_allocation, at fortran/trans-array.c:5979
! !
! Contributed by Janus Weil <janus@gcc.gnu.org> ! Contributed by Janus Weil <janus@gcc.gnu.org>
! Error message update with patch for PR fortran/83633
!
module mytypes module mytypes
implicit none implicit none
contains contains
...@@ -15,6 +16,6 @@ end module ...@@ -15,6 +16,6 @@ end module
program test program test
use mytypes use mytypes
implicit none implicit none
integer, dimension(get_i()) :: x ! { dg-error "must have constant shape" } integer, dimension(get_i()) :: x ! { dg-error "array with nonconstant bounds" }
print *, size (x) print *, size (x) ! { dg-error "has no IMPLICIT type" }
end end
...@@ -6,14 +6,15 @@ ...@@ -6,14 +6,15 @@
! Test a regression where an ICE occurred attempting to create array variables ! Test a regression where an ICE occurred attempting to create array variables
! with non-constant array-specs in legacy clist initializers. ! with non-constant array-specs in legacy clist initializers.
! !
! Error message update with patch for PR fortran/83633
!
program p program p
implicit none implicit none
integer :: nn integer :: nn
real :: rr real :: rr
structure /s/ structure /s/
integer x(n) /1/ ! { dg-error "xpected constant" } integer x(n) /1/ ! { dg-error "array with nonconstant bounds" }
integer xx(nn) /1/ ! { dg-error "xpected constant" } integer xx(nn) /1/ ! { dg-error "array with nonconstant bounds" }
integer xxx(rr) /1.0/ ! { dg-error "xpected constant" } integer xxx(rr) /1.0/ ! { dg-error "array with nonconstant bounds" }
end structure end structure
end end
! { dg-do compile }
! PR fortran/83633
! Original testcase by Nathan T. Weeks <weeks at iastate dot edu>
!
integer :: A(command_argument_count()) = 1 ! { dg-error "nonconstant bounds" }
write (*,*) A
end
...@@ -7,9 +7,10 @@ ...@@ -7,9 +7,10 @@
! to the error handling routine for non-constant array-specs in DATA list ! to the error handling routine for non-constant array-specs in DATA list
! initializers. ! initializers.
! !
! Error message update with patch for PR fortran/83633
!
program p program p
integer x(n) /1/ ! { dg-error "cannot appear in the expression" } integer x(n) /1/ ! { dg-error "array with nonconstant bounds" }
end end
! { dg-prune-output "module or main program" } ! { dg-prune-output "module or main program" }
! { dg-prune-output "Nonconstant array" } ! { dg-prune-output "Nonconstant array" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment