[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / default_format_2.f90
blob5ad7b3a642953d57a736d8f6aca6d8d55ee4fb03
1 ! { dg-do run { xfail powerpc*-apple-darwin* powerpc*-*-linux* } }
2 ! { dg-require-effective-target fortran_large_real }
3 ! Test XFAILed on these platforms because the system's printf() lacks
4 ! proper support for denormalized long doubles. See PR24685
6 ! This tests that the default formats for formatted I/O of reals are
7 ! wide enough and have enough precision, by checking that values can
8 ! be written and read back.
10 include "default_format_2.inc"
12 program main
13 use test_default_format
15 if (test (1.0_kl, 0) /= 0) STOP 1
16 if (test (0.0_kl, 0) /= 0) STOP 2
17 if (test (tiny(0.0_kl), 1) /= 0) STOP 3
18 if (test (-tiny(0.0_kl), -1) /= 0) STOP 4
19 if (test (huge(0.0_kl), -1) /= 0) STOP 5
20 if (test (-huge(0.0_kl), 1) /= 0) STOP 6
21 end program main