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
/
select_1.f90
blob
d6d6610c4b43036b4150035963e4491803be7086
1
! { dg-do run }
2
! Simple test for SELECT CASE
3
!
4
program
select_2
5
integer
i
6
do
i
=
1
,
5
7
select
case
(
i
)
8
case
(
1
)
9
if
(
i
/=
1
)
STOP
1
10
case
(
2
:
3
)
11
if
(
i
/=
2
.
and
.
i
/=
3
)
STOP
2
12
case
(
4
)
13
if
(
i
/=
4
)
STOP
3
14
case default
15
if
(
i
/=
5
)
STOP
4
16
end
select
17
end do
18
end program
select_2