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
/
vect
/
pr114832.c
blob
2de07ae22efcbf11ab094440f7a85587f31e8bad
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fno-tree-loop-if-convert -fno-tree-loop-distribute-patterns" } */
3
4
int
a
,
b
,
c
,
d
[
3
];
5
void
e
() {
6
int
f
,
g
=
0
;
7
for
(;
g
<
3
;
g
++) {
8
if
(
f
||
a
||
b
&&
c
) {
9
int
h
, *
i
= &
h
, **
j
= &
i
;
10
}
11
d
[
g
] =
0
;
12
}
13
}