public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/110012] New: ICE involving parametrized polymorphic variable
@ 2023-05-28  2:36 neil.n.carlson at gmail dot com
  0 siblings, 0 replies; only message in thread
From: neil.n.carlson at gmail dot com @ 2023-05-28  2:36 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110012

            Bug ID: 110012
           Summary: ICE involving parametrized polymorphic variable
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: neil.n.carlson at gmail dot com
  Target Milestone: ---

I get an ICE with the following example:

module pde_class
  type, abstract :: pde(npde)
    integer,len :: npde
  end type
end module

module navier_stokes_type
  use pde_class
  type, extends(pde) :: navier_stokes
  end type
contains
  subroutine alloc_navier_stokes(p)
    class(pde(:)), allocatable :: p
    allocate(navier_stokes(npde=3) :: p)
  end subroutine
end module

module mfe_disc_type
  use pde_class
  type :: foo
    class(pde(:)), allocatable :: p
  end type
end module

$ gfortran gfortran-20230527.f90 -c
f951: internal compiler error: in resolve_fl_derived, at
fortran/resolve.cc:15532
0x699d67 resolve_fl_derived
        ../../gcc/fortran/resolve.cc:15532
0x79c3df resolve_symbol
        ../../gcc/fortran/resolve.cc:15916
0x7c7c32 do_traverse_symtree
        ../../gcc/fortran/symbol.cc:4190
0x7a77ce resolve_types
        ../../gcc/fortran/resolve.cc:17879
0x7aeb0c gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.cc:17994
0x78dedf gfc_parse_file()
        ../../gcc/fortran/parse.cc:6861
0x7e63bf gfc_be_parse_file
        ../../gcc/fortran/f95-lang.cc:229
Please submit a full bug report, with preprocessed source (by using
-freport-bug).

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-05-28  2:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-28  2:36 [Bug fortran/110012] New: ICE involving parametrized polymorphic variable neil.n.carlson at gmail dot com

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).