RISC-V: Describe -march behavior for dependent extensions
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr20755.f
blob351f1cf21bd500070a7259ae310e3a66b442e3f1
1 ! PR libfortran/20755
2 ! { dg-do run }
3 ! { dg-options "-std=legacy" }
5 character*30 s
7 write (s,2000) 0.0, 0.02
8 if (s .ne. " 0.00 2.000E-02") STOP 1
9 write (s,2000) 0.01, 0.02
10 if (s .ne. " 1.000E-02 2.000E-02") STOP 2
11 2000 format (1PG12.3,G12.3)
12 end