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
Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr32222.f90
blob
fbe33ed129bb284237451264dfcdb06d18e7fcb9
1
!PR fortran/32222
2
! { dg-do compile }
3
4
module
splinemod
5
implicit none
6
integer
,
parameter
::
dl
=
KIND
(
1
.
d0
)
7
Type
lSamples
8
integer
l
(
10
)
9
end Type
lSamples
10
end module
splinemod
11
12
subroutine
InterpolateClArr
(
lSet
)
13
use
splinemod
14
type
(
lSamples
),
intent
(
in
) ::
lSet
15
real
(
dl
)
xl
(
10
)
16
xl
=
real
(
lSet
%
l
,
dl
)
17
end subroutine
InterpolateClArr