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
/
pr115197.c
blob
00d674b3bd9a621349d3f91e1fb0e4ab6ba0286d
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fno-tree-scev-cprop -ftree-pre -ftree-loop-distribute-patterns" } */
3
4
int
a
,
b
[
2
],
c
,
d
,
e
,
f
[
2
];
5
int
main
() {
6
while
(
a
)
7
if
(
d
) {
8
if
(
e
)
9
return
0
;
10
for
(;
c
;
c
++)
11
f
[
c
] =
0
< (
b
[
c
] = ~(
f
[
c
+
1
] <
a
));
12
}
13
return
0
;
14
}