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
ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
dependency_27.f90
blob
ee7c4fa42693caefa8e5cdbc1d669812b8b5aa72
1
! { dg-do compile }
2
! { dg-options "-Warray-temporaries" }
3
! PR 36928 - optimize array interleaving array temporaries
4
program
main
5
real
,
dimension
(
20
) ::
a
6
read
(
10
)
a
7
a
(
2
:
10
:
2
) =
a
(
1
:
9
:
2
)
8
write
(
11
)
a
9
read
(
10
)
a
10
a
(
2
:
10
:
4
) =
a
(
1
:
5
:
2
)
11
write
(
11
)
a
12
read
(
10
)
a
13
a
(
2
:
10
:
4
) =
a
(
5
:
1
:-
2
)
14
write
(
11
)
a
15
end program
main