Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-16.c
blobe429630cbfb928a42f245783316c3f5f0a3516be
1 /* { dg-do compile } */
2 /* { dg-options "-O0 -msse" } */
4 typedef float __vr __attribute__ ((vector_size (16)));
6 struct vector
8 union
10 __vr v;
11 float f[4];
15 void
16 doit ()
18 float f[4];
19 struct vector v;
21 f[0] = 0;
22 f[1] = 1;
23 f[2] = 2;
24 f[3] = 3;
26 v.v = __builtin_ia32_loadups (f);