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
/
pr19926.f90
blob
f24ebfff5eed889fcaf7816e19852dbfa16444bc
1
! { dg-do run }
2
module
b
3
type
cat
4
integer
::
i
=
0
5
end type
cat
6
end module
b
7
8
program
a
9
use
b
10
type
(
cat
)
z
11
integer
::
i
=
0
,
j
(
4
,
3
,
2
) =
0
12
call
string_comp
(
i
)
13
if
(
i
/=
3
)
STOP
1
14
call
string_comp
(
z
%
i
)
15
if
(
z
%
i
/=
3
)
STOP
2
16
call
string_comp
(
j
(
1
,
2
,
1
))
17
if
(
j
(
1
,
2
,
1
) /=
3
)
STOP
3
18
end program
a
19
20
subroutine
string_comp
(
i
)
21
integer
,
parameter
::
map
(
0
:
50
) =
3
22
integer
::
i
23
i
=
map
(
42
)
24
end subroutine
string_comp