aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vlddqu-256-1.c
blob: 82c0ed580024202d58ae5192460bcdd863fbbc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */

#include "avx-check.h"

void static
avx_test (void)
{
  int e[8]={ 23, 67, 53, 6, 4, 6, 85, 234};
  union256i_d u;

  u.x = _mm256_lddqu_si256 ((__m256i *) e);

  if (check_union256i_d (u, e))
    abort ();
}