Commit 11492349 by Tobias Burnus Committed by Tobias Burnus

re PR fortran/41872 (wrong-code: Issues with allocatable scalars)

2010-01-05  Tobias Burnus  <burnus@net-b.de>

        PR fortran/41872
        * trans-expr.c (gfc_conv_procedure_call): Nullify
        return value for allocatable-scalar character functions.

2010-01-05  Tobias Burnus  <burnus@net-b.de>

        PR fortran/41872
        * gfortran.dg/allocatable_scalar_8.f90: New.

From-SVN: r155639
parent ab90dbeb
2010-01-05 Tobias Burnus <burnus@net-b.de>
PR fortran/41872
* trans-expr.c (gfc_conv_procedure_call): Nullify
return value for allocatable-scalar character functions.
2010-01-04 Tobias Burnus <burnus@net-b.de>
PR fortran/36161
......
......@@ -3351,6 +3351,12 @@ gfc_conv_procedure_call (gfc_se * se, gfc_symbol * sym,
{
var = gfc_create_var (type, "pstr");
if ((!comp && sym->attr.allocatable)
|| (comp && comp->attr.allocatable))
gfc_add_modify (&se->pre, var,
fold_convert (TREE_TYPE (var),
null_pointer_node));
/* Provide an address expression for the function arguments. */
var = gfc_build_addr_expr (NULL_TREE, var);
}
......
2010-01-05 Tobias Burnus <burnus@net-b.de>
PR fortran/41872
* gfortran.dg/allocatable_scalar_8.f90: New.
2010-01-04 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/42398
......
! { dg-do run }
!
! PR fortran/41872
!
! Character functions returning allocatable scalars
!
program test
implicit none
if (func () /= 'abc') call abort ()
contains
function func() result (str)
character(len=3), allocatable :: str
if (allocated (str)) call abort ()
allocate (str)
str = 'abc'
end function func
end program test
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