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
/
graphite
/
pr83668.c
blob
22b01b8c4aef60ae18160b23721546ba16734fab
1
/* { dg-do run } */
2
/* { dg-options "-O -fno-tree-dominator-opts -fgraphite-identity" } */
3
4
int
a
,
b
,
c
;
5
int
d
[
14
];
6
7
int
8
main
(
void
)
9
{
10
short
e
;
11
char
f
;
12
13
for
(;
b
>=
0
;
b
--)
14
{
15
e
=
0
;
16
for
(;
e
<
2
;
e
++)
17
{
18
a
=
0
;
19
for
(;
a
<
7
;
a
++)
20
d
[
a
] =
1
;
21
}
22
if
(
c
)
23
{
24
f
=
0
;
25
for
(;
f
>=
0
;
f
--)
26
;
27
}
28
}
29
30
if
(
a
!=
7
)
31
__builtin_abort
();
32
33
return
0
;
34
}