(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
avx512f-vmovntdqa-2.c
       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    union512i_q s, res;
      11  
      12    s.x = _mm512_set_epi64 (39578, -429496, 7856, 0, 85632, -1234, 47563, -1);
      13    res.x = _mm512_stream_load_si512 (&s.x);
      14  
      15    if (check_union512i_q (s, res.a))
      16      abort ();
      17  }