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 rtl-optimization/87918
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr61855.c
blob
09c62aebbaee0680c3fcb238e03014f1e90a5a36
1
/* { dg-do compile } */
2
/* { dg-options "-mavx512f" } */
3
4
#include <x86intrin.h>
5
6
__m512
test
(
__m512 x
)
7
{
8
return
_mm512_getmant_ps
(
x
,
_MM_MANT_NORM_1_2
,
_MM_MANT_SIGN_zero
);
9
}
10