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 tree-optimization/29791] ICE: tree check: expected ssa_name, have symbol_memory_tag in verify_ssa, at tree-ssa.c:776



------- Comment #2 from burnus at gcc dot gnu dot org  2006-11-10 00:14 -------
Slightly more reduced test case:

subroutine zsk_driver_cgnr (opt, sol)
  implicit none
  interface
    subroutine opt()
    end subroutine opt
  end interface
  complex :: sol(:)
  sol(1) = cmplx(0.0,1.0)*aimag(sol(1))
end subroutine zsk_driver_cgnr

or

subroutine zsk_driver_cgnr (opt)
  implicit none
  interface
    subroutine opt()
    end subroutine opt
  end interface
  complex,allocatable :: sol(:)
  allocate(sol(5))
  sol(1) = cmplx(0.0,1.0)*aimag(sol(1))
end subroutine zsk_driver_cgnr


-- 


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


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