2014-04-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / lto / pr60635_0.f90
blobe121879859003846bb83f0a4127d22c153d260a9
1 ! { dg-lto-do link }
2 program test
3 use iso_fortran_env
5 interface
6 integer(int16) function bigendc16(x) bind(C)
7 import
8 integer(int16), intent(in) :: x
9 end function
10 end interface
12 integer(int16) :: x16 = 12345
13 x16 = bigendc16(x16)
14 print *,x16
15 end program