aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-vmovntpd-2.c
blob: 96c26c21ef4aa9218b00a6f8d15d264e0e6da0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do run } */
/* { dg-options "-mavx512f -O2" } */
/* { dg-require-effective-target avx512f } */

#include "avx512f-check.h"

void static
avx512f_test (void)
{
  union512d s;
  double res[8];

  s.x = _mm512_set_pd (-39578.467285, 4294967295.1, -7856.342941, 0,
		       85632.783567, 1234.9999, 47563.234215, -1.07);
  _mm512_stream_pd (res, s.x);

  if (check_union512d (s, res))
    abort ();
}