aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-vmovmskpd-256-1.c
blob: 71353c44d183fcc087b5335253e49c7d03a08565 (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
/* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */

#include "avx-check.h"

void static
avx_test (void)
{
  int i;
  int d;
  union256d s1;
  double source[4] = {-45, -3, -34.56, 35};
  int e = 0;

  s1.x = _mm256_loadu_pd (source);
  d = _mm256_movemask_pd (s1.x);
  
  for (i = 0; i < 4; i++)
    if (source[i] < 0)
      e |= (1 << i);

  if (checkVi (&d, &e, 1))
    abort ();  
}