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
/
pr71416-1.c
blob
b2845787c4a7a6523eeba57c509978ad77370461
1
#include
"tree-vect.h"
2
3
short
a
;
4
char
b
,
e
;
5
static short
c
;
6
int
d
,
f
;
7
int
main
() {
8
short
g
;
9
check_vect
();
10
for
(;
e
; ++
e
) {
11
d
=
a
;
12
f
=
0
;
13
if
(
b
)
14
d
=
f
=
g
>=
c
;
15
}
16
return
0
;
17
}
18