http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52608
Bug #: 52608 Summary: [4.8 Regression] The test FM110 of the NIST test suite fails since revision 185433 Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libfortran AssignedTo: unassig...@gcc.gnu.org ReportedBy: domi...@lps.ens.fr CC: j...@gcc.gnu.org The test FM110 of the NIST test suite fails since revision 185433. The following reduced code shows the problem: AAVS = .087654 BAVS = .87654 35043 FORMAT (" ",16X,"COMPUTED: ",22X,1P/26X,F5.4,3X,2P,F5.3,+3P," ",& (23X,F6.2),3X) 5043 FORMAT (17X,"CORRECT: ",/24X,& " .8765 8.765 87.65") WRITE (NUVI,35043) AAVS,AAVS,AAVS WRITE (NUVI,5043) end [macbook] /Users/dominiq% a.out COMPUTED: ***** ***** 087.65 CORRECT: .8765 8.765 87.65