[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_e.f90
bloba85506b0929cdd599622b863a03eba85144e285a
1 ! { dg-do run }
2 ! PR83811 fortran 'e' format broken for single digit exponents
3 program test
4 character(25) :: s
5 write(s, '(1pe5.0e1)') 1.e-4
6 if (s.ne."1.E-4") call abort
7 write(s, '(e5.1e1)') 1.e12
8 if (s.ne."*****") call abort
9 end