Commit b6e841a6 by Steven G. Kargl

decl.c (match_data_constant): Fortran 2018 allows pointer initialization in a data statement.

2018-05-27  Steven G. Kargl  <kargl@gcc.gnu.org>

 * decl.c (match_data_constant):  Fortran 2018 allows pointer
 initialization in a data statement.

2018-05-27  Steven G. Kargl  <kargl@gcc.gnu.org>

 * gfortran.dg/data_stmt_pointer.f90: new test.

From-SVN: r260808
parent f5435230
2018-05-27 Steven G. Kargl <kargl@gcc.gnu.org>
* decl.c (match_data_constant): Fortran 2018 allows pointer
initialization in a data statement.
2018-05-25 Janus Weil <janus@gcc.gnu.org>
PR fortran/85839
......
......@@ -387,7 +387,20 @@ match_data_constant (gfc_expr **result)
return m;
}
else if (m == MATCH_YES)
gfc_free_expr (*result);
{
/* F2018:R845 data-stmt-constant is initial-data-target.
A data-stmt-constant shall be ... initial-data-target if and
only if the corresponding data-stmt-object has the POINTER
attribute. ... If data-stmt-constant is initial-data-target
the corresponding data statement object shall be
data-pointer-initialization compatible (7.5.4.6) with the initial
data target; the data statement object is initially associated
with the target. */
if ((*result)->symtree->n.sym->attr.save
&& (*result)->symtree->n.sym->attr.target)
return m;
gfc_free_expr (*result);
}
gfc_current_locus = old_loc;
......
2018-05-27 Steven G. Kargl <kargl@gcc.gnu.org>
* gfortran.dg/data_stmt_pointer.f90: new test.
2018-05-27 Jakub Jelinek <jakub@redhat.com>
PR target/85918
......
! { dg-do run }
program foo
real, pointer :: p
real, save, target :: x = 42
data p / x /
if (p /= 42) stop 1
call bar
end program foo
subroutine bar
type bah
integer, pointer :: p
end type bah
type(bah) a
integer, save, target :: i = 42
data a%p / i /
if (a%p /= 42) stop 2
end subroutine
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