* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_zero_digits.f90
blob64f4d72428e82072df1e93d60ca2064c7d7922d3
1 ! { dg-do run }
2 ! Verify that when decimal precision is zero, no error.
3 ! Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
4 program test
5 character(20) :: astr
6 50 FORMAT (d20.0)
7 astr = ""
8 write(astr,50) -8.0D0
9 if (astr.ne." 0.D+01") call abort()
10 end program test