public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/55983] New: ICE in find_typebound_proc_uop, at fortran/class.c:2711
@ 2013-01-14 23:10 slayoo at staszic dot waw.pl
  2013-01-15  8:29 ` [Bug fortran/55983] [4.7/4.8 Regression] " janus at gcc dot gnu.org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: slayoo at staszic dot waw.pl @ 2013-01-14 23:10 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55983

             Bug #: 55983
           Summary: ICE in find_typebound_proc_uop, at
                    fortran/class.c:2711
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: slayoo@staszic.waw.pl


First, sorry for not reducing the test case further.

Second, here's the way to reproduce it:

$ cat bug2.f 
module bcd_m
  type, abstract :: bcd_t
    contains
    procedure(bcd_fill_halos), deferred :: fill_halos
  end type
  abstract interface 
    subroutine bcd_fill_halos(this)
      import :: bcd_t
      class(bcd_t ) :: this
    end subroutine
  end interface
end module

module solver_mpdata_m
  type :: mpdata_t
    class(bcd_t), pointer :: bcx, bcy
    contains
    procedure :: advop => mpdata_advop
  end type
  contains
  subroutine mpdata_advop(this)
    class(mpdata_t) :: this
    associate ( bcx => this%bcx, bcy => this%bcy )
      call bcx%fill_halos()
    end associate
  end subroutine
end module


$ /usr/lib/gcc-snapshot/bin/gfortran -ffree-form -std=f2008 bug2.f
f951: internal compiler error: in find_typebound_proc_uop, at
fortran/class.c:2711
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-snapshot/README.Bugs> for instructions.


$ /usr/lib/gcc-snapshot/bin/gfortran --version
GNU Fortran (Debian 20130113-1) 4.8.0 20130113 (experimental) [trunk revision
195136]
...


HTH,
Sylwester


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-01-17 10:58 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-14 23:10 [Bug fortran/55983] New: ICE in find_typebound_proc_uop, at fortran/class.c:2711 slayoo at staszic dot waw.pl
2013-01-15  8:29 ` [Bug fortran/55983] [4.7/4.8 Regression] " janus at gcc dot gnu.org
2013-01-15  8:31 ` janus at gcc dot gnu.org
2013-01-15  9:03 ` slayoo at staszic dot waw.pl
2013-01-15  9:10 ` janus at gcc dot gnu.org
2013-01-15 10:09 ` janus at gcc dot gnu.org
2013-01-15 21:10 ` janus at gcc dot gnu.org
2013-01-15 22:17 ` janus at gcc dot gnu.org
2013-01-16 13:31 ` janus at gcc dot gnu.org
2013-01-16 19:52 ` janus at gcc dot gnu.org
2013-01-17 10:56 ` janus at gcc dot gnu.org
2013-01-17 10:58 ` janus at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).