Re: [PATCH 18/25] Fix interleaving of Fortran stop messages

2018-09-12 Thread Andrew Stubbs
On 05/09/18 19:11, Janne Blomqvist wrote: Ok, thanks. Committed, thanks. Apologies again for missing the Fortran list. Andrew

Re: [PATCH 18/25] Fix interleaving of Fortran stop messages

2018-09-05 Thread Janne Blomqvist
On Wed, Sep 5, 2018 at 7:57 PM Toon Moene wrote: > > > > Forwarded Message > Subject: [PATCH 18/25] Fix interleaving of Fortran stop messages > Date: Wed, 5 Sep 2018 12:51:19 +0100 > From: a...@codesourcery.com > To: gcc-patches@gcc.gnu.org > > >

[PATCH 18/25] Fix interleaving of Fortran stop messages

2018-09-05 Thread ams
Fortran STOP and ERROR STOP use a different function to print the "STOP" string and the message string. On GCN this results in out-of-order output, such as "ERROR STOP ". This patch fixes the problem by making estr_write use the proper Fortran write, not C printf, so both parts are now output th