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
Merge from trunk
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
avx512f-vrcp14ss-1.c
blob
580dfd6a52d0c47f4b71d1684ec92ff588ff1a0b
1
/* { dg-do compile } */
2
/* { dg-options "-mavx512f -O2" } */
3
/* { dg-final { scan-assembler-times "vrcp14ss\[ \\t\]+\[^\n\]*%xmm\[0-9\]\[^\{\]" 1 } } */
4
5
#include <immintrin.h>
6
7
volatile
__m128 x1
,
x2
;
8
9
void
extern
10
avx512f_test
(
void
)
11
{
12
x1
=
_mm_rcp14_ss
(
x1
,
x2
);
13
}