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
Merge aosp-toolchain/gcc/gcc-4_9 changes.
[official-gcc.git]
/
gcc-4_9
/
gcc
/
testsuite
/
gfortran.dg
/
bound_3.f90
blob
7b1696d09f6ccc91e0972c646f3843761d2a51eb
1
! { dg-do run }
2
!
3
call
s
(
1
,
0
)
4
call
s
(
2
,
0
)
5
call
s
(
3
,
0
)
6
call
s
(
4
,
0
)
7
call
s
(
5
,
1
)
8
call
s
(
6
,
2
)
9
call
s
(
7
,
3
)
10
contains
11
subroutine
s
(
n
,
m
)
12
implicit none
13
integer
n
,
m
14
real
x
(
10
)
15
if
(
any
(
lbound
(
x
(
5
:
n
)) /=
1
))
call
abort
16
if
(
lbound
(
x
(
5
:
n
),
1
) /=
1
)
call
abort
17
if
(
any
(
ubound
(
x
(
5
:
n
)) /=
m
))
call
abort
18
if
(
ubound
(
x
(
5
:
n
),
1
) /=
m
)
call
abort
19
end subroutine
20
end program