(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
pr96713.c
       1  /* { dg-options "-Wno-psabi" } */
       2  typedef int __attribute__ ((vector_size (8))) V;
       3  
       4  void
       5  foo (V d, V e)
       6  {
       7    d <= e;
       8    foo ((V){}, (V){});
       9  }