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
/
avx512f-vmovntpd-1.c
blob
f77dcd7c36d20299b1a8c00b1b6e5b135b4eedb3
1
/* { dg-do compile } */
2
/* { dg-options "-mavx512f -O2" } */
3
/* { dg-final { scan-assembler-times "vmovntpd\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\[^\n\]*\\)(?:\n|\[ \\t\]+#)" 1 } } */
4
5
#include <immintrin.h>
6
7
double
*
x
;
8
volatile
__m512d y
;
9
10
void
extern
11
avx512f_test
(
void
)
12
{
13
_mm512_stream_pd
(
x
,
y
);
14
}