(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
compat/
vector-2_main.c
       1  /* Test compatibility of vector types: layout between separately-compiled
       2     modules, parameter passing, and function return.  This test uses
       3     vectors of floating points values.  */
       4  
       5  extern void vector_2_x (void);
       6  extern void exit (int);
       7  int fails;
       8  
       9  int
      10  main ()
      11  {
      12    vector_2_x ();
      13    exit (0);
      14  }