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 from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
dependency_1.f90
blob
5a5a898822d7700a1947b4638718f2a67b4bf824
1
! { dg-do compile }
2
! PR23906
3
! Dependency analysis was using the stride from the wrong expression and
4
! segfaulting
5
subroutine
foo
(
a
)
6
real
,
dimension
(:) ::
a
7
8
a
(
1
:
3
:
2
) =
a
(
1
:
2
)
9
a
(
1
:
2
) =
a
(
1
:
3
:
2
)
10
end subroutine
11