Re: [patch,fortran] PR90374 add e0 zero width exponent support

2019-11-28 Thread Steve Kargl
On Thu, Nov 28, 2019 at 08:05:31AM -0800, Jerry DeLisle wrote: > On 11/28/19 7:53 AM, Steve Kargl wrote: > > On Thu, Nov 28, 2019 at 07:45:25AM -0800, Jerry DeLisle wrote: > >> +if (u == FMT_ZERO) > >> + { > >> +if (!gfc_notify_std (GFC_STD_F2018, > >> +

Re: [patch,fortran] PR90374 add e0 zero width exponent support

2019-11-28 Thread Jerry DeLisle
On 11/28/19 7:53 AM, Steve Kargl wrote: On Thu, Nov 28, 2019 at 07:45:25AM -0800, Jerry DeLisle wrote: + if (u == FMT_ZERO) + { + if (!gfc_notify_std (GFC_STD_F2018, + "Positive exponent width required in " +

Re: [patch,fortran] PR90374 add e0 zero width exponent support

2019-11-28 Thread Steve Kargl
On Thu, Nov 28, 2019 at 07:45:25AM -0800, Jerry DeLisle wrote: > + if (u == FMT_ZERO) > + { > + if (!gfc_notify_std (GFC_STD_F2018, > + "Positive exponent width required in " > + "format string a

[patch,fortran] PR90374 add e0 zero width exponent support

2019-11-28 Thread Jerry DeLisle
Hi all, The attached patch implements the last piece of this which enables the zero width exponent, giving a processor dependent width. Regression tested on x86_64-pc-linux-gnu. I don't think it is very intrusive and I updated the test case. OK for trunk? Regards, Jerry 2019-11-27 Jerry