Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / compat / union-m128-1_main.c
blob69dd34dce5748bc94a512cd2a86b1c9919ca0a68
1 /* { dg-options "-O" } */
3 #ifdef __x86_64__
4 /* Test function argument passing. PR target/15301. */
6 extern void union_m128_1_x (void);
7 extern void exit (int);
9 int
10 main ()
12 union_m128_1_x ();
13 exit (0);
15 #else
16 int
17 main ()
19 return 0;
21 #endif