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
/
pr59519-2.c
blob
13db9616bdfdfc366d4938d5d3b6280b5cd3d41d
1
/* PR tree-optimization/59519 */
2
/* { dg-do compile } */
3
/* { dg-additional-options "-O3" } */
4
5
struct
S
{
int
f0
; }
d
;
6
int
a
[
8
] = {
0
},
b
,
c
,
e
;
7
8
void
9
foo
(
void
)
10
{
11
for
(;
e
<
1
;
e
++)
12
for
(
b
=
0
;
b
<
7
;
b
++)
13
{
14
c
|= (
a
[
b
+
1
] !=
0
);
15
if
(
d
.
f0
)
16
break
;
17
}
18
}
19