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