Commit c7b6844e by Jerry DeLisle

re PR fortran/32554 ([4.2 Only] Bug in P formatting)

2007-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/32554
	* gfortran.dg/fmt_p_1.f90: New test.

From-SVN: r126174
parent c767280a
2007-06-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/32554
* gfortran.dg/fmt_p_1.f90: New test.
2007-07-01 Ira Rosen <irar@il.ibm.com> 2007-07-01 Ira Rosen <irar@il.ibm.com>
* gcc.dg/vect/vect-strided-store-u16-i4.c: Remove abort() from input * gcc.dg/vect/vect-strided-store-u16-i4.c: Remove abort() from input
! { dg-do run }
! PR32554 Bug in P formatting
! Test case from the bug reporter
program gfcbug66
real(8) :: x = 1.0e-100_8
character(50) :: outstr
write (outstr,'(1X,2E12.3)') x, 2 * x
if (outstr.ne." 0.100E-99 0.200E-99") call abort
! Before patch 2 * x was put out wrong
write (outstr,'(1X,1P,2E12.3)') x, 2 * x
if (outstr.ne." 1.000-100 2.000-100") call abort
end program gfcbug66
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment