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
/
pr87132.c
blob
48b8673bba3ec0228db526d57987f4893808ed83
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
int
c
,
d
;
5
int
main
()
6
{
7
int
e
[] = {
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
};
8
d
=
8
;
9
for
(;
d
;
d
--)
10
for
(
int
a
=
0
;
a
<=
8
;
a
++)
11
{
12
c
=
e
[
1
];
13
e
[
d
] =
0
;
14
}
15
if
(
c
!=
0
)
16
abort
();
17
return
0
;
18
}