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
/
torture
/
pr111950.c
blob
4eeffeb6827f5e7808161fe76877bc210633097c
1
/* { dg-do compile } */
2
/* { dg-additional-options "-ftree-vectorize -fno-vect-cost-model" } */
3
4
int
a
,
b
,
d
;
5
int
c
[
4
];
6
unsigned
e
;
7
void
f
() {
8
char
g
;
9
for
(;
d
;
d
++) {
10
g
=
1
;
11
for
(;
g
>=
0
;
g
--) {
12
e
=
b
>=
2
||
a
>>
b
?:
a
;
13
c
[
g
] =
e
;
14
}
15
}
16
}