aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-vmovntps-1.c
blob: 933f01518aaa4545b2977cfe1076af7330a8a30f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-mavx512f -O2" } */
/* { dg-final { scan-assembler "vmovntps\[ \\t\]+\[^\n\]*%zmm\[0-9\]" } } */

#include <immintrin.h>

float *x;
volatile __m512 y;

void extern
avx512f_test (void)
{
  _mm512_stream_ps (x, y);
}