repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-04-23 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
lto
/
pr60635_0.f90
blob
e121879859003846bb83f0a4127d22c153d260a9
1
! { dg-lto-do link }
2
program
test
3
use
iso_fortran_env
4
5
interface
6
integer
(
int16
)
function
bigendc16
(
x
)
bind
(
C
)
7
import
8
integer
(
int16
),
intent
(
in
) ::
x
9
end function
10
end interface
11
12
integer
(
int16
) ::
x16
=
12345
13
x16
=
bigendc16
(
x16
)
14
print
*,
x16
15
end program
16