public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/55984] New: ICE: gfc_trans_code(): Bad statement code
@ 2013-01-14 23:13 slayoo at staszic dot waw.pl
  2013-01-15  9:59 ` [Bug fortran/55984] [4.8 Regression] " dominiq at lps dot ens.fr
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: slayoo at staszic dot waw.pl @ 2013-01-14 23:13 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55984
           Summary: ICE: gfc_trans_code(): Bad statement code
    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 more.

Second, here's a recipe to reproduce the ICE:

$ cat bug1.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_m
  use bcd_m
  type, abstract :: solver_t
    integer :: n, hlo
    class(bcd_t), pointer :: bcx, bcy
    contains
    procedure(solver_advop), deferred :: advop
  end type 
  abstract interface
    subroutine solver_advop(this)
      import solver_t
      class(solver_t) :: this
    end subroutine
  end interface
  contains
end module

module solver_mpdata_m
  use solver_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 bug1.f
bug1.f: In function 'mpdata_advop':
bug1.f:42:0: internal compiler error: gfc_trans_code(): Bad statement code
       call bcx%fill_halos()
 ^
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] 10+ messages in thread

end of thread, other threads:[~2013-01-27  7:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-14 23:13 [Bug fortran/55984] New: ICE: gfc_trans_code(): Bad statement code slayoo at staszic dot waw.pl
2013-01-15  9:59 ` [Bug fortran/55984] [4.8 Regression] " dominiq at lps dot ens.fr
2013-01-15 10:04 ` janus at gcc dot gnu.org
2013-01-15 10:06 ` janus at gcc dot gnu.org
2013-01-15 22:44 ` janus at gcc dot gnu.org
2013-01-15 22:57 ` janus at gcc dot gnu.org
2013-01-16  8:31 ` janus at gcc dot gnu.org
2013-01-26 21:18 ` [Bug fortran/55984] [4.8 Regression] [OOP] " pault at gcc dot gnu.org
2013-01-27  7:18 ` pault at gcc dot gnu.org
2013-01-27  7:36 ` pault 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).