This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/17298] gfortran ICE: Not Implemented: Scalarization of non-elemental intrinsic: __transfer1
- From: "c dot lemmen at fz-juelich dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Nov 2004 09:12:52 -0000
- Subject: [Bug fortran/17298] gfortran ICE: Not Implemented: Scalarization of non-elemental intrinsic: __transfer1
- References: <20040902202041.17298.anlauf@hep.tu-darmstadt.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From c dot lemmen at fz-juelich dot de 2004-11-10 09:12 -------
Let me stress the importance of fixing this bug: it occurs in Basic Linear
Algebra Subprograms (BLAS), in program dcabs1.f:
double precision function dcabs1(z)
double complex z
double precision t(2)
t=transfer(z,t)
dcabs1 = dabs(t(1)) + dabs(t(2))
return
end
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17298