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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr70510.c
blob
fdad97a16f41e5ba76494821a3bc26c930901d4e
1
/* PR target/70510 */
2
/* { dg-do assemble { target avx512bw } } */
3
/* { dg-require-effective-target masm_intel } */
4
/* { dg-options "-Og -mavx512bw -masm=intel" } */
5
6
typedef
int
V
__attribute__
((
vector_size
(
64
)));
7
8
V
9
foo
(
V u
,
V v
)
10
{
11
v
[
0
] |=
v
[
u
[
0
]];
12
u
/= ((
V
)
v
)[
0
];
13
return
u
;
14
}