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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr64386.c
blob
fc152cb93a70c2f4824548a47c47d430d8590092
1
/* { dg-do compile } */
2
/* { dg-options "-O -ftree-vectorize -mavx512bw" } */
3
4
char
ac
[
64
],
bc
[
64
],
ec
[
64
];
5
6
void
fc
(
void
)
7
{
8
int
i
;
9
for
(
i
=
0
;
i
<
64
;
i
++)
10
{
11
char
e
=
ec
[
i
];
12
ac
[
i
] =
bc
[
i
] ? :
e
;
13
}
14
}