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

#include <immintrin.h>

volatile __m256i x;
__m256i *y;

void extern
avx2_test (void)
{
  x = _mm256_stream_load_si256 (y);
}