Commit 083dd940 by Tobias Burnus Committed by Tobias Burnus

re PR fortran/51966 (ICE in gfc_conv_array_constructor_expr)

2012-01-24  Tobias Burnus  <burnus@net-b.de>

        PR fortran/51966
        * resolve.c (resolve_structure_cons): Only create an
        array constructors for nonscalars.

2012-01-24  Tobias Burnus  <burnus@net-b.de>

        PR fortran/51966
        * gfortran.dg/derived_constructor_char_3.f90: New.

From-SVN: r183510
parent d2bb8192
2012-01-24 Tobias Burnus <burnus@net-b.de>
PR fortran/51966
* resolve.c (resolve_structure_cons): Only create an
array constructors for nonscalars.
2012-01-23 Tobias Burnus <burnus@net-b.de> 2012-01-23 Tobias Burnus <burnus@net-b.de>
PR fortran/51948 PR fortran/51948
......
...@@ -1051,6 +1051,7 @@ resolve_structure_cons (gfc_expr *expr, int init) ...@@ -1051,6 +1051,7 @@ resolve_structure_cons (gfc_expr *expr, int init)
&& comp->ts.u.cl->length->expr_type == EXPR_CONSTANT && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
&& cons->expr->ts.u.cl && cons->expr->ts.u.cl->length && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
&& cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
&& cons->expr->rank != 0
&& mpz_cmp (cons->expr->ts.u.cl->length->value.integer, && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
comp->ts.u.cl->length->value.integer) != 0) comp->ts.u.cl->length->value.integer) != 0)
{ {
......
2012-01-24 Tobias Burnus <burnus@net-b.de>
PR fortran/51966
* gfortran.dg/derived_constructor_char_3.f90: New.
2012-01-24 Ian Lance Taylor <iant@google.com> 2012-01-24 Ian Lance Taylor <iant@google.com>
* go.test/go-test.exp (filecmp): New procedure. * go.test/go-test.exp (filecmp): New procedure.
......
! { dg-do compile }
!
! PR fortran/51966
!
! Contributed by Peter Wind
!
type :: Deriv
character(len=10) :: name
end type
character(len=8), dimension(2), parameter :: &
DEF_ECOSYSTEMS = (/ "Gridxxxx", "StringYY" /)
type(Deriv), save :: DepEcoSystem = Deriv(DEF_ECOSYSTEMS(1))
if (DepEcoSystem%name /= "Gridxxxx" &
.or. DepEcoSystem%name(9:9) /= ' ' &
.or. DepEcoSystem%name(10:10) /= ' ') call abort()
DepEcoSystem%name = 'ABCDEFGHIJ'
call Init_EcoSystems()
if (DepEcoSystem%name /= "StringYY" &
.or. DepEcoSystem%name(9:9) /= ' ' &
.or. DepEcoSystem%name(10:10) /= ' ') call abort()
contains
subroutine Init_EcoSystems()
integer :: i =2
DepEcoSystem = Deriv(DEF_ECOSYSTEMS(i))
end subroutine Init_EcoSystems
end
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