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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58955-1.c
blob
a79f42f0b38bba7f6e868ba15e7a4f64fa1e5402
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
5
int
a
,
b
,
c
,
d
[
4
] = {
0
,
0
,
0
,
1
};
6
7
int
8
main
()
9
{
10
for
(;
a
<
4
;
a
++)
11
{
12
int
e
=
d
[
a
];
13
for
(
c
=
1
;
c
<
1
;
c
++);
14
b
=
e
;
15
d
[
a
] =
0
;
16
}
17
if
(
b
!=
1
)
18
abort
();
19
return
0
;
20
}