[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2019-01-26 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 Dominique d'Humieres changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2018-11-19 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 Martin Liška changed: What|Removed |Added CC||marxin at gcc dot gnu.org --- Comment #6

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2017-07-22 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 Thomas Koenig changed: What|Removed |Added Status|NEW |WAITING --- Comment #5 from Thomas

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2014-09-02 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 Dominique d'Humieres dominiq at lps dot ens.fr changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2014-08-30 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 --- Comment #3 from Tobias Burnus burnus at gcc dot gnu.org --- Author: burnus Date: Sat Aug 30 18:47:04 2014 New Revision: 214757 URL: https://gcc.gnu.org/viewcvs?rev=214757root=gccview=rev Log: 2014-08-30 Tobias Burnus bur...@net-b.de

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2014-08-27 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 --- Comment #1 from Tobias Burnus burnus at gcc dot gnu.org --- Note: The code deciding whether a temporary is required seems to do additional checks, at least for the simple noncoarray assignment, no temporary is generated.

[Bug fortran/62278] gfc_check_dependency should also check for TARGET attribute

2014-08-27 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62278 --- Comment #2 from Thomas Koenig tkoenig at gcc dot gnu.org --- Can you provide an example? The simplistic case of subroutine foo(p) integer, save :: a(10)[*] integer, pointer :: p(:) p(:) = a(:) end subroutine foo