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/53962] Tab handling with formatted stream output


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53962

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
                 CC|                            |burnus at gcc dot gnu.org,
                   |                            |jvdelisle at gcc dot
                   |                            |gnu.org

--- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-07-15 14:58:42 UTC ---
For
    WRITE (42,'("Kilroy was here",T5,"X")')

gfortran gives (first line with sequential, second with stream):

 KilrXy was here
0000000   K   i   l   r   X   y       w   a   s       h   e   r   e  \n
0000020
 Kilroy was here    X
0000000   K   i   l   r   o   y       w   a   s       h   e   r   e    
0000020               X  \n
0000025

Expected: Twice the same result  (as for the first output).


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