aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/union-m128-1.h
blob: 56d80cbfb91aca217add0c97cb0557c812557db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <xmmintrin.h>

typedef struct
{
  __m128 x;
} SS_struct_mi128;

typedef union
{
  __m128 x;
} SS_union_mi128;

typedef union
{
  __m128 x;
  unsigned long long u[2];
} union_mi128;