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
/
pr110702.c
blob
aab9c7d923ee1c80a234097521b6acf4fc41c5b3
1
/* { dg-do run } */
2
3
void
abort
(
void
);
4
5
int
a
,
b
,
c
,
d
;
6
long
e
[
9
][
7
][
4
];
7
8
void
f
()
9
{
10
for
(;
a
>=
0
;
a
--)
11
{
12
b
=
0
;
13
for
(;
b
<=
3
;
b
++)
14
{
15
c
=
0
;
16
for
(;
c
<=
3
;
c
++)
17
{
18
int
*
g
= &
d
;
19
*
g
=
e
[
0
][
0
][
b
] |
e
[
a
][
b
][
a
];
20
}
21
}
22
}
23
}
24
25
int
main
()
26
{
27
f
();
28
if
(
a
!= -
1
)
29
abort
();
30
return
0
;
31
}