PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_p_1.f90
blob25ece76e20160071f56f776702efc3406779ba1b
1 ! { dg-do run }
2 ! PR32554 Bug in P formatting
3 ! Test case from the bug reporter
4 program gfcbug66
5 real(8) :: x = 1.0e-100_8
6 character(50) :: outstr
7 write (outstr,'(1X,2E12.3)') x, 2 * x
8 if (outstr.ne." 0.100E-99 0.200E-99") STOP 1
9 ! Before patch 2 * x was put out wrong
10 write (outstr,'(1X,1P,2E12.3)') x, 2 * x
11 if (outstr.ne." 1.000-100 2.000-100") STOP 2
12 end program gfcbug66