]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libgfortran: Adjust bytes_left and pos for access="STREAM".
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Mon, 12 Feb 2024 21:12:08 +0000 (13:12 -0800)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Mon, 12 Feb 2024 23:29:04 +0000 (15:29 -0800)
During tab edits, the pos (position) and bytes_used
Variables were not being set correctly for stream I/O.
Since stream I/O does not have 'real' records, the
format buffer active length must be used instead of
the record length variable.

       PR libgfortran/109358

libgfortran/ChangeLog:

* io/transfer.c (formatted_transfer_scalar_write): Adjust
bytes_used and pos variable for stream access.

gcc/testsuite/ChangeLog:

* gfortran.dg/pr109358.f90: New test.

gcc/testsuite/gfortran.dg/pr109358.f90 [new file with mode: 0644]
libgfortran/io/transfer.c

diff --git a/gcc/testsuite/gfortran.dg/pr109358.f90 b/gcc/testsuite/gfortran.dg/pr109358.f90
new file mode 100644 (file)
index 0000000..5013984
--- /dev/null
@@ -0,0 +1,14 @@
+! { dg-do run }
+! PR109358, test that tabs during stream io are correct.
+program tabs
+  implicit none
+  integer :: fd
+  character(64) :: line
+  open(newunit=fd, file="otabs.txt", form="formatted", access="stream")
+  write(fd, "(i4, t40, i4, t20, i5.5)") 1234, 5555, 67890
+  close(fd)
+  open(newunit=fd, file="otabs.txt", form="formatted")
+  read(fd,"(a)") line
+  close(fd, status='delete')
+  if (line .ne. "1234               67890               5555") stop 10
+end program tabs
index 80b60dfeb9f895c976d7a5fb8415d1cc5629c8f0..99ef96a9e7c82a97471e4c2cc35df73375933ac0 100644 (file)
@@ -2072,11 +2072,11 @@ formatted_transfer_scalar_write (st_parameter_dt *dtp, bt type, void *p, int kin
          dtp->u.p.skips = dtp->u.p.pending_spaces = 0;
        }
 
-      bytes_used = dtp->u.p.current_unit->recl
-                  - dtp->u.p.current_unit->bytes_left;
-
       if (is_stream_io(dtp))
-       bytes_used = 0;
+       bytes_used = dtp->u.p.current_unit->fbuf->act;
+      else
+       bytes_used = dtp->u.p.current_unit->recl
+                   - dtp->u.p.current_unit->bytes_left;
 
       switch (t)
        {
@@ -2452,7 +2452,11 @@ formatted_transfer_scalar_write (st_parameter_dt *dtp, bt type, void *p, int kin
          p = ((char *) p) + size;
        }
 
-      pos = dtp->u.p.current_unit->recl - dtp->u.p.current_unit->bytes_left;
+      if (is_stream_io(dtp))
+       pos = dtp->u.p.current_unit->fbuf->act;
+      else
+       pos = dtp->u.p.current_unit->recl - dtp->u.p.current_unit->bytes_left;
+
       dtp->u.p.max_pos = (dtp->u.p.max_pos > pos) ? dtp->u.p.max_pos : pos;
     }