(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr100292.c
       1  /* { dg-do compile } */
       2  
       3  typedef unsigned char __attribute__((__vector_size__ (4))) V;
       4  
       5  extern void bar (V v);
       6  
       7  void
       8  foo (char c)
       9  {
      10    bar (c <= (V) 127);
      11  }