This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libfortran/52608] New: [4.8 Regression] The test FM110 of the NIST test suite fails since revision 185433
- From: "dominiq at lps dot ens.fr" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Sat, 17 Mar 2012 11:21:16 +0000
- Subject: [Bug libfortran/52608] New: [4.8 Regression] The test FM110 of the NIST test suite fails since revision 185433
- Auto-submitted: auto-generated
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: unassigned@gcc.gnu.org
ReportedBy: dominiq@lps.ens.fr
CC: jb@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