[Bug fortran/31994] conjg(transpose(a)) produces wrong answer.
dfranke at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sat May 19 09:12:00 GMT 2007
------- Comment #3 from dfranke at gcc dot gnu dot org 2007-05-19 10:11 -------
On
a = transpose(b)
a = transpose(conjg(b))
the TRANSPOSE intrinsic is translated via trans-intrinsic.c
(gfc_conv_intrinsic_funcall) and results in a library call
(_gfortran_transpose_c4), on
a = conjg(transpose(b))
translation is done via trans-array.c (gfc_conv_array_transpose) - no library
function is called.
The latter fails.
--
dfranke at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dfranke at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31994
More information about the Gcc-bugs
mailing list