This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libfortran/18710] img part of complex number not written to direct access file


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]