[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / warn_std_1.f90
blobb0e4b5d414841b0ddfa67f66db5f684351e2c2a8
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
4 ! PR fortran/32778 - pedantic warning: intrinsics that
5 ! are GNU extensions not part of -std=gnu
7 ! (1/3) Check for excess errors if -std=gnu.
10 CHARACTER(len=255) :: tmp
11 REAL(8) :: x
13 ! GNU extension, check overload of F77 standard intrinsic
14 x = ZABS(CMPLX(0.0, 1.0, 8))
16 ! GNU extension
17 CALL flush()
19 ! F95
20 tmp = ADJUSTL(" gfortran ")
22 ! F2003
23 CALL GET_COMMAND (tmp)
25 END