(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr107585.c
       1  /* PR target/107585 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2" } */
       4  
       5  typedef unsigned char __attribute__((__vector_size__ (16))) V;
       6  char c;
       7  void bar (int);
       8  
       9  void
      10  foo (void)
      11  {
      12    bar (((V) (c <= (V){127}))[2]);
      13  }