(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr10153-1.c
       1  typedef int V __attribute__ ((vector_size (2 * sizeof (int))));
       2  V
       3  foo (void)
       4  {
       5    V v = { };
       6    return v - foo();
       7  }