aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/vector-2_main.c
blob: 37f36fe0eca4a54b599ef576da9b7a4556533c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test compatibility of vector types: layout between separately-compiled
   modules, parameter passing, and function return.  This test uses
   vectors of floating points values.  */

extern void vector_2_x (void);
extern void exit (int);
int fails;

int
main ()
{
  vector_2_x ();
  exit (0);
}