Commit 096bfdb1 by Tobias Burnus Committed by Tobias Burnus

re PR fortran/42650 (F90: DT function with in-line DT definition and RESULT is rejected)

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

        PR fortran/42650
        * parse.c (decode_specification_statement): Use sym->result not
        * sym.

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

        PR fortran/42650
        * gfortran.dg/func_result_5.f90: New test.

From-SVN: r156449
parent c9c27b72
2010-02-02 Tobias Burnus <burnus@net-b.de>
PR fortran/42650
* parse.c (decode_specification_statement): Use sym->result not sym.
2010-02-01 Tobias Burnus <burnus@net-b.de>
PR fortran/42922
......
......@@ -111,7 +111,7 @@ decode_specification_statement (void)
match ("import", gfc_match_import, ST_IMPORT);
match ("use", gfc_match_use, ST_USE);
if (gfc_current_block ()->ts.type != BT_DERIVED)
if (gfc_current_block ()->result->ts.type != BT_DERIVED)
goto end_of_block;
match (NULL, gfc_match_st_function, ST_STATEMENT_FUNCTION);
......
2010-02-02 Tobias Burnus <burnus@net-b.de>
PR fortran/42650
* gfortran.dg/func_result_5.f90: New test.
2010-02-01 Tobias Burnus <burnus@net-b.de>
PR fortran/42922
......
! { dg-do compile }
!
! PR fortran/42650
!
! Result type was not working
!
type(t) function func2() result(res)
type t
sequence
integer :: i = 5
end type t
res%i = 2
end function func2
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