1 /* { dg-skip-if "test SSE2 support" { ! { i?86-*-* x86_64-*-* } } } */
2 /* { dg-require-effective-target sse2_runtime } */
3 
4 /* Test compatibility of vector types: layout between separately-compiled
5    modules, parameter passing, and function return.  This test uses
6    vectors of floating points values.  */
7 
8 extern void vector_2_x (void);
9 extern void exit (int);
10 int fails;
11 
12 int
main()13 main ()
14 {
15   vector_2_x ();
16   exit (0);
17 }
18