This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/29791] ICE: tree check: expected ssa_name, have symbol_memory_tag in verify_ssa, at tree-ssa.c:776
- From: "burnus at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Nov 2006 00:14:20 -0000
- Subject: [Bug tree-optimization/29791] ICE: tree check: expected ssa_name, have symbol_memory_tag in verify_ssa, at tree-ssa.c:776
- References: <bug-29791-13404@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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