+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
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;
--- /dev/null
+! { 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
+