1  /* { dg-do compile } */
       2  /* { dg-options "-mavx512f -O2" } */
       3  /* { dg-final { scan-assembler-times "vmovntps\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\[^\n\]*\\)(?:\n|\[ \\t\]+#)" 1 } } */
       4  
       5  #include <immintrin.h>
       6  
       7  float *x;
       8  volatile __m512 y;
       9  
      10  void extern
      11  avx512f_test (void)
      12  {
      13    _mm512_stream_ps (x, y);
      14  }