[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2022-02-20 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 anlauf at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED Target

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2022-02-20 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 --- Comment #8 from CVS Commits --- The master branch has been updated by Harald Anlauf : https://gcc.gnu.org/g:e49508ac6b36adb8a2056c5a1fb6e0178de2439d commit r12-7305-ge49508ac6b36adb8a2056c5a1fb6e0178de2439d Author: Harald Anlauf Date:

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2022-02-09 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 anlauf at gcc dot gnu.org changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |anlauf at gcc dot

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2021-07-31 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 --- Comment #6 from anlauf at gcc dot gnu.org --- I believe this is actually invalid code. One cannot initialize the pointer using the data statement as in the given example. A valid variant (which is accepted and works as expected) is:

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2021-07-24 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 Andrew Pinski changed: What|Removed |Added Status|WAITING |NEW Last reconfirmed|2016-09-22

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2016-12-01 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 Dominique d'Humieres changed: What|Removed |Added Status|NEW |WAITING --- Comment #4 from

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2016-09-23 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 Richard Biener changed: What|Removed |Added Keywords||wrong-code --- Comment #3 from Richard

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2016-09-22 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 Martin Liška changed: What|Removed |Added Keywords||ice-on-valid-code

[Bug fortran/77693] ICE in rtl_for_decl_init, at dwarf2out.c:17378

2016-09-22 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77693 --- Comment #1 from Gerhard Steinmetz --- Some other variants : $ cat z2.f90 program p complex, pointer :: a complex :: z data a /(1.,2.)/ z = a print *, z end $ cat z3.f90 program p