(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
vector-shift-1.c
       1  typedef unsigned char __attribute__((__vector_size__ (1))) U;
       2  
       3  U
       4  foo (U u)
       5  {
       6    u = u == u;
       7    return (~(u >> 255));
       8  }