blob: a3514ef727122c81477147715603bdacee03d107 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2 -mavx512f" } */
/* { dg-require-effective-target avx512f } */
#include "avx512f-check.h"
static __m512d
__attribute__ ((noinline))
foo (double *v)
{
return _mm512_set_pd (v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
}
static __m512d
__attribute__ ((noinline))
foo_r (double *v)
{
return _mm512_setr_pd (v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]);
}
static void
avx512f_test (void)
{
double v[8] = { -3.3, 2.6, 1.48, 9.104, -23.9, -173.37, -13.48, 69.78 };
union512d res;
res.x = foo (v);
if (check_union512d (res, v))
abort ();
res.x = _mm512_setzero_pd ();
res.x = foo_r (v);
if (check_union512d (res, v))
abort ();
}