Commit b1dc55ad by Tobias Burnus Committed by Tobias Burnus

re PR fortran/60881 (ICE on dummy argument that extends a type with scalar and…

re PR fortran/60881 (ICE on dummy argument that extends a type with scalar and scalar coarry components)

2014-04-22  Tobias Burnus  <burnus@net-b.de>

        PR fortran/60881
        * trans-expr.c (gfc_trans_subcomponent_assign): Fix handling
        of scalar coarrays.

2014-04-22  Tobias Burnus  <burnus@net-b.de>

        PR fortran/60881
        * coarray/alloc_comp_3.f90: New.

From-SVN: r209657
parent 4a980bdc
2014-04-22 Tobias Burnus <burnus@net-b.de>
PR fortran/60881
* trans-expr.c (gfc_trans_subcomponent_assign): Fix handling
of scalar coarrays.
2014-04-17 Jakub Jelinek <jakub@redhat.com>
* trans-types.c (gfc_init_kinds): Make sure GET_MODE_BITSIZE
......
......@@ -5989,7 +5989,8 @@ gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr)
{
gfc_init_se (&se, NULL);
/* Pointer component. */
if (cm->attr.dimension && !cm->attr.proc_pointer)
if ((cm->attr.dimension || cm->attr.codimension)
&& !cm->attr.proc_pointer)
{
/* Array pointer. */
if (expr->expr_type == EXPR_NULL)
......@@ -6026,7 +6027,8 @@ gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr)
gfc_class_initializer (&cm->ts, expr));
gfc_add_expr_to_block (&block, tmp);
}
else if (cm->attr.dimension && !cm->attr.proc_pointer)
else if ((cm->attr.dimension || cm->attr.codimension)
&& !cm->attr.proc_pointer)
{
if (cm->attr.allocatable && expr->expr_type == EXPR_NULL)
gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
......
2014-04-22 Tobias Burnus <burnus@net-b.de>
PR fortran/60881
* coarray/alloc_comp_3.f90: New.
2014-04-22 H.J. Lu <hongjiu.lu@intel.com>
PR target/60868
......
! { dg-do compile }
!
! PR fortran/60881
!
! Contributed by Damian Rouson
!
! Was ICEing before
!
program main
implicit none
type co_object
logical :: defined=.false.
real, allocatable :: dummy_to_facilitate_extension[:]
end type
type, extends(co_object) :: global_field
end type
type(global_field) T
call assign_local_field(T)
contains
subroutine assign_local_field(lhs)
type(global_field) lhs
end subroutine
end program
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