1  /* { dg-do run } */
       2  /* { dg-options "-mavx512f -O2" } */
       3  /* { dg-require-effective-target avx512f } */
       4  
       5  #include "avx512f-check.h"
       6  
       7  void static
       8  avx512f_test (void)
       9  {
      10    union512d s;
      11    double res[8] __attribute__((aligned (64)));
      12  
      13    s.x = _mm512_set_pd (-39578.467285, 4294967295.1, -7856.342941, 0,
      14  		       85632.783567, 1234.9999, 47563.234215, -1.07);
      15    _mm512_stream_pd (res, s.x);
      16  
      17    if (check_union512d (s, res))
      18      abort ();
      19  }