1  /* PR target/96262 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-mavx512bw -O" } */
       4  
       5  typedef char __attribute__ ((__vector_size__ (64))) V;
       6  
       7  V
       8  foo (V v)
       9  {
      10    return ~(v << 1);
      11  }