aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v16sf-3.c
blob: 7ec166a588650a88336afc924ea3abd1de1724f1 (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
44
45
/* { dg-do run } */
/* { dg-options "-O2 -mavx512f" } */
/* { dg-require-effective-target avx512f } */

#include "avx512f-check.h"

static __m512
__attribute__ ((noinline))
foo (float x)
{
  return _mm512_set_ps (x, x, x, x, x, x, x, x,
			x, x, x, x, x, x, x, x);
}

static __m512
__attribute__ ((noinline))
foo_r (float x)
{
  return _mm512_setr_ps (x, x, x, x, x, x, x, x,
			 x, x, x, x, x, x, x, x);
}

static void
avx512f_test (void)
{
  int i;
  float e = 34.5;
  float v[16];
  union512 res;

  for (i = 0; i < 16; i++)
    v[i] = e;

  res.x = foo (e);

  if (check_union512 (res, v))
    abort ();

  res.x = _mm512_setzero_ps ();

  res.x = foo_r (e);

  if (check_union512 (res, v))
    abort ();
}