1  /* PR target/94438 */
       2  /* { dg-do compile { target int128 } } */
       3  /* { dg-options "-mavx512bw" } */
       4  
       5  typedef __attribute__ ((__vector_size__ (4 * sizeof (__int128)))) __int128 V;
       6  void bar (V);
       7  
       8  void
       9  foo (V w)
      10  {
      11    V v = 0 <= (0 >= w);
      12    bar (v);
      13  }