aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx-set-v4df-4.c
blob: e2f6300a3ec729bd092190288d011544ec2ad51d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */

#include "avx-check.h"

static __m256d
__attribute__((noinline))
foo (double x, int i)
{
  switch (i)
    {
    case 3:
      return _mm256_set_pd (x, 0, 0, 0);
    case 2:
      return _mm256_set_pd (0, x, 0, 0);
    case 1:
      return _mm256_set_pd (0, 0, x, 0);
    case 0:
      return _mm256_set_pd (0, 0, 0, x);
    default:
      abort ();
    }
}

static void
avx_test (void)
{
  double e = -3.234;
  double v[4];
  union256d u;
  int i, j;

  for (i = 0; i < ARRAY_SIZE (v); i++)
    {
      for (j = 0; j < ARRAY_SIZE (v); j++)
	v[j] = 0;
      v[i] = e;
      u.x = foo (e, i);
      if (check_union256d (u, v))
	abort ();
    }
}