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
PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
avx512bw-vpsrldq-1.c
blob
62f2e3195236af5f2bf199340080ef282772ef52
1
/* { dg-do compile } */
2
/* { dg-options "-mavx512bw -O2" } */
3
/* { dg-final { scan-assembler-times "vpsrldq\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
4
5
#include <immintrin.h>
6
7
extern volatile
__m512i x
;
8
9
void
extern
10
avx512bw_test
(
void
)
11
{
12
x
=
_mm512_bsrli_epi128
(
x
,
13
);
13
}