Re: bug report : gfortran E edit descriptor

2016-03-10 Thread sudo.michio
@jaea.go.jp >> Cc: GCC Development ,fort...@gcc.gnu.org >> Date: 2016-03-10 19:09:33 >> Subject: Re: bug report : gfortran E edit descriptor >> >> > I have an trouble in E edit descriptor of gfortran. >> > This is a example. >> > (source file: test.f95

Re: bug report : gfortran E edit descriptor

2016-03-10 Thread Tobias Burnus
I think gfortran's result *is* *correct* according to the Fortran standard. (I concur that the result is not what one would expect but it is now decades to late to change that.) sudo.michio wrote: > I have an trouble in E edit descriptor of gfortran. > This is a example. ... > write(*,'(e

Re: bug report : gfortran E edit descriptor

2016-03-10 Thread Dominique d'Humières
> I have an trouble in E edit descriptor of gfortran. > This is a example. > (source file: test.f95) >program test >implicit none >real a,b >a=135.0 >b=1737.5 >write(*,*)a,b >write(*,'(e9.3,a,f7.1)')a,' ',b >write(*,'(1pe9.3,a,f7.1)')a

bug report : gfortran E edit descriptor

2016-03-10 Thread sudo.michio
to:gcc@gcc.gnu.org from:Mr.Michio Sudo I have an trouble in E edit descriptor of gfortran. This is a example. (source file: test.f95) program test implicit none real a,b a=135.0 b=1737.5 write(*,*)a,b write(*,'(e9.3,a,f7.1)')a,' ',b write(*,'