ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_kind_int128_test2.f03
bloba66c8142244479684fefe063c05cc69ecc98e88e
1 ! { dg-do run }
2 ! { dg-options "-std=gnu" }
3 ! { dg-require-effective-target fortran_integer_16 }
5 ! Note: int_fast128_t currently not supported.
7 program c_kind_int128
8   use, intrinsic :: iso_c_binding
9   integer(c_int128_t) :: a  
10   integer(c_int_least128_t) :: b  
11 ! integer(c_int_fast128_t) :: c
12     
13   if (sizeof (a) /= 16) STOP 1
14   if (sizeof (b) /= 16) STOP 2
15 !  if (sizeof (c) /= 16) STOP 3
16 end program c_kind_int128