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
/
pr60382.c
blob
e68229590a1386cf28d3bbc9d36b3baf333ed86c
1
#include
"tree-vect.h"
2
3
int
a
,
b
,
c
,
e
,
f
;
4
5
void
6
foo
()
7
{
8
for
(
b
=
0
;
b
<
3
;
b
++)
9
if
(
e
)
10
{
11
for
(
c
=
0
;
c
<
4
;
c
++)
12
{
13
if
(
b
)
14
continue
;
15
f
=
1
;
16
for
(
a
=
0
;
a
<
2
;
a
++)
17
f
|=
1
;
18
}
19
for
(;;)
20
;
21
}
22
}
23
24
int
25
main
()
26
{
27
check_vect
();
28
foo
();
29
return
0
;
30
}
31