aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx2-vpxor-2.c
blob: be326449825f306f392a4c4e5371d6ea7003565d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* { dg-do run } */
/* { dg-options "-O2 -mavx2" } */
/* { dg-require-effective-target avx2 } */

#include "avx2-check.h"

void static
avx2_test (void)
{
  int i;
  union256i_q u, s1, s2;
  int source1[8] = { 34545, 95567, 23443, 5675, 2323, 67, 2345, 45667 };
  int source2[8] = { 674, 57897, 93459, 45624, 54674, 1237, 67436, 79608 };
  int d[8];
  int e[8];

  s1.x = _mm256_loadu_si256 ((__m256i *) source1);
  s2.x = _mm256_loadu_si256 ((__m256i *) source2);
  u.x = _mm256_xor_si256 (s1.x, s2.x);

  _mm256_storeu_si256 ((__m256i *) d, u.x);

  for (i = 0; i < 8; i++)
    e[i] = source1[i] ^ source2[i];

  if (checkVi (d, e, 8))
    abort ();
}