aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v16sf-1.c
blob: 0ae82bc4138607b24963dccb196ce1bce29b4eed (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 *v)
{
  return _mm512_set_ps (v[15], v[14], v[13], v[12],
			v[11], v[10], v[9], v[8],
			v[7], v[6], v[5], v[4],
			v[3], v[2], v[1], v[0]);
}

static __m512
__attribute__ ((noinline))
foo_r (float *v)
{
  return _mm512_setr_ps (v[0], v[1], v[2], v[3],
			 v[4], v[5], v[6], v[7],
			 v[8], v[9], v[10], v[11],
			 v[12], v[13], v[14], v[15]);
}

static void
avx512f_test (void)
{
  float v[16] = { -3.3, 2.6, 1.48, 9.104, -23.9, 17, -13.48, 4,
		  69.78, 0.33, 81, 0.4, -8.9, -173.37, 0.8, 68 };
  union512 res;

  res.x = foo (v);

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

  res.x = _mm512_setzero_ps ();

  res.x = foo_r (v);

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