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
/
pr23816-1.c
blob
216c4eb7a9e1ea2ab1a158eb7e8a4229b713e445
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_condition } */
3
4
void
5
foo
(
float
a
[
32
],
float
b
[
2
][
32
])
6
{
7
int
i
;
8
for
(
i
=
0
;
i
<
32
;
i
++)
9
a
[
i
] = (
b
[
0
][
i
] >
b
[
1
][
i
]) ?
b
[
0
][
i
] :
b
[
1
][
i
];
10
}
11