[Bug fortran/68319] ICE on using interface with included entry

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

[Bug fortran/68319] ICE on using interface with included entry

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

[Bug fortran/68319] ICE on using interface with included entry

2015-11-13 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #8 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Nov 13 21:11:42 2015 New Revision: 230351 URL: https://gcc.gnu.org/viewcvs?rev=230351&root=gcc&view=rev Log: 2015-11-13 Steven G. Kargl PR fortran/68319

[Bug fortran/68319] ICE on using interface with included entry

2015-11-13 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #7 from Steve Kargl --- On Fri, Nov 13, 2015 at 04:08:05PM +, sgk at troutmask dot apl.washington.edu wrote: > --- Comment #6 from Steve Kargl --- > On Fri, Nov 13, 2015 at 12:42:16AM +, kargl at gcc dot gnu.org wrote: > > >

[Bug fortran/68319] ICE on using interface with included entry

2015-11-13 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 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/68319] ICE on using interface with included entry

2015-11-13 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #6 from Steve Kargl --- On Fri, Nov 13, 2015 at 12:42:16AM +, kargl at gcc dot gnu.org wrote: > > It seems that gfortran is missing a check for ENTRY. F2008 has > > C1206 (R1205) An interface-body shall not contain a data-stmt,

[Bug fortran/68319] ICE on using interface with included entry

2015-11-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #4 from Dominique d'Humieres --- > In fact, gfortran is not issues an error for data-stmt, format-stmt, > or stmt-function-stmt. Confirmed: the following test compiles module m interface subroutine s entry e i

[Bug fortran/68319] ICE on using interface with included entry

2015-11-13 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #3 from Steve Kargl --- On Fri, Nov 13, 2015 at 12:42:16AM +, kargl at gcc dot gnu.org wrote: > --- Comment #2 from kargl at gcc dot gnu.org --- > It seems that gfortran is missing a check for ENTRY. F2008 has > > C1206 (R1205)

[Bug fortran/68319] ICE on using interface with included entry

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

[Bug fortran/68319] ICE on using interface with included entry

2015-11-12 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68319 --- Comment #1 from Gerhard Steinmetz --- Same issue with interface of a function. Compiles if interface is effectivly not used : $ cat z1x.f90 module m interface subroutine s entry e end end interface contains subr