From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 304253858C78; Thu, 8 Feb 2024 18:17:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 304253858C78 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707416251; bh=jHn8eX3OKPuXgu69UdFfxQVVO+/PN/otdW8lOJfMVRk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Ny5AxGAFfCsSfIQnQDQjex1V80Fib59PPjE6mbLGRMIXBHjPlcfUqz/ugDBqiKn6V 9V9+tUdSSWANqQSpW1laoWnSwau0n18OmCXdsxg2ScpRAzSUNeakYuLzZKcxM4Qtaj ARGu/vBvJkqh93vjFFK0PIdjaAPUFimdimOhYky0= From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/109358] Wrong formatting with T-descriptor during stream output Date: Thu, 08 Feb 2024 18:17:30 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109358 --- Comment #10 from Jerry DeLisle --- To clarify. The following is the remaining issue that is not related to str= eam I/O: > program tabs > implicit none > integer :: fd > open(newunit=3Dfd, file=3D"test.txt", form=3D"formatted") > write(fd, "(a)") "12345678901234567890123456789" > write(fd, "(i4, t25, t2, i4.4)") 1234, 0123 > close(fd) > end program tabs Posted earlier in comment #6.=