https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67528
kargl at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Last reconfirmed| |2015-09-09
CC| |kargl at gcc dot gnu.org
Ever confirmed|0 |1
--- Comment #1 from kargl at gcc dot gnu.org ---
Possible patch
https://gcc.gnu.org/ml/fortran/2015-09/msg00058.html
The essence of the issue is that the assignments
aren't being translates to the call.
v1 = v1 --> call copy_t_a(v1, (v1))
vi = (v1) --> call copy_t_a(vi, ((v1)))