This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libfortran/18710] img part of complex number not written to direct access file
- From: "bdavis at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 29 Nov 2004 01:32:27 -0000
- Subject: [Bug libfortran/18710] img part of complex number not written to direct access file
- References: <20041129001627.18710.bdavis@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From bdavis at gcc dot gnu dot org 2004-11-29 01:32 -------
possibly needs a front end change, as well as run-time..
c = __complex__ (1.2e+2, 2.4e+2);
_gfortran_filename = "c.f";
_gfortran_line = 4;
_gfortran_ioparm.unit = 9;
_gfortran_ioparm.rec = 1B;
_gfortran_st_write ();
_gfortran_transfer_complex (&c, 4);
_gfortran_st_write_done ();
c = __complex__ (0.0, 0.0);
_gfortran_filename = "c.f";
_gfortran_line = 6;
_gfortran_ioparm.unit = 9;
_gfortran_ioparm.rec = 1B;
_gfortran_st_read ();
_gfortran_transfer_complex (&c, 4);
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18710