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
* g++.dg/other/i386-2.C (dg-options): Add -mavx512pf.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
avx512f-vpcmpled-1.c
blob
68f085ace4b22ff59163ef104bd18f33a1e9e656
1
/* { dg-do compile } */
2
/* { dg-options "-mavx512f -O2" } */
3
/* { dg-final { scan-assembler-times "vpcmpd\[ \\t\]+\[^\n\]*%zmm\[0-9\]\[^\n^k\]*%k\[0-9\]" 1 } } */
4
5
#include <immintrin.h>
6
7
volatile
__m512i x
;
8
volatile
__mmask16 m
;
9
10
void
extern
11
avx512f_test
(
void
)
12
{
13
m
=
_mm512_cmple_epi32_mask
(
x
,
x
);
14
}