This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/37930] gfortran error and ICE at automatic type conversion with transfer intrinsic
- From: "deji_aking at yahoo dot ca" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Oct 2008 22:31:09 -0000
- Subject: [Bug fortran/37930] gfortran error and ICE at automatic type conversion with transfer intrinsic
- References: <bug-37930-8911@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from deji_aking at yahoo dot ca 2008-10-27 22:31 -------
A simpler code (without cray pointers) as shown below also produces the errors.
...
subroutine adw_set(G_nk)
implicit none
integer G_nk
real*8 Adw_zbc_8(G_nk)
integer Adw_fn_I(G_nk)
Adw_zbc_8(1:G_nk) = transfer(-1,1.0)
Adw_Fn_I (G_nk) = transfer(-1,1.0)
return
end
...
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37930