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
/
vect-cond-arith-8.c
blob
e4b2abb737a1ab958f055c7031a3d2a440d37e1c
1
/* { dg-do compile } */
2
3
void
4
f
(
float
*
x
,
_Bool
*
cond
,
float
*
y
)
5
{
6
for
(
int
i
=
0
;
i
<
100
; ++
i
)
7
x
[
i
] =
cond
[
i
] ?
y
[
i
] *
100
:
y
[
i
];
8
}