This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/70949] ICE in propagate_necessity, at tree-ssa-dce.c:924


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

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
This variant works :
(as known from several other PRs : change "class" to "type")


$ cat z2.f90
program p
   type t1
   end type
   type t2
      type(t1), pointer :: q
   end type
   type(t1), pointer :: a
   type(t2) :: c

   allocate(a)
   c%q => a
   print *, 'a', associated(a, f(c))

contains

   function f(x) result (z)
      type(t2), intent(in) :: x
      type(t1), pointer :: z
      z => x%q
   end
end

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]