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
2015-05-04 Sandra Loosemore <sandra@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr59006.c
blob
34de83dac84d6b2859839b6dfcf9afdb926c9886
1
/* { dg-do compile } */
2
3
int
a
[
8
],
b
;
4
void
fn1
(
void
)
5
{
6
int
c
;
7
for
(;
b
;
b
++)
8
{
9
int
d
=
a
[
b
];
10
c
=
a
[
0
] ?
d
:
0
;
11
a
[
b
] =
c
;
12
}
13
}