[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--

[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Nov 13 01:11:10 2015 New Revision: 230282 URL: https://gcc.gnu.org/viewcvs?rev=230282&root=gcc&view=rev Log: 2015-11-12 Steven G. Kargl PR fortran/68318

[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 --- Comment #4 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Nov 13 00:14:32 2015 New Revision: 230278 URL: https://gcc.gnu.org/viewcvs?rev=230278&root=gcc&view=rev Log: 2015-11-12 Steven G. Kargl PR fortran/68318

[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 kargl at gcc dot gnu.org changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |kargl at gcc dot gnu.org

[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 kargl at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/68318] ICE on duplicate entry declarations

2015-11-12 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68318 --- Comment #1 from Gerhard Steinmetz --- Somehow similar for functions : $ cat z3.f90 module m contains real function f1() entry e() end real function f2() entry e() end end module $ gfortran -g -O0 -Wall -fcheck=all -c z3.