1  /* PR target/70325 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-mavx512vl -O2" } */
       4  
       5  typedef char C __attribute((__vector_size__(32)));
       6  typedef int I __attribute((__vector_size__(32)));
       7  
       8  void
       9  f(int a,I b)
      10  {
      11    __builtin_ia32_storedquqi256_mask((C*)f,(C)b,a); /* { dg-warning "implicit declaration of function" } */
      12  }