Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / compat / union-m128-1_y.c
blob2b6eb0a6ee88166c375e8705a85e2f1f6af61f64
1 /* { dg-options "-O" } */
3 #ifdef __x86_64__
4 #include <stdlib.h>
6 #include "union-m128-1.h"
8 void
9 bar (SS_union_mi128 un)
11 union_mi128 x;
13 x.x = un.x;
14 if (x.u [0] != 0x123456789abcedf0LL
15 || x.u [1] != 0xfedcba9876543210LL)
16 abort ();
19 void
20 foo (SS_struct_mi128 st)
22 union_mi128 x;
24 x.x = st.x;
25 if (x.u [0] != 0x123456789abcedf0LL
26 || x.u [1] != 0xfedcba9876543210LL)
27 abort ();
29 #else
30 int dummy_y;
31 #endif