Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / sse-1.c
blobafae22d3705403f1030661f40075b884625b671e
1 /* PR 12902 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -msse" } */
5 #include <xmmintrin.h>
7 typedef union
9 int i[4];
10 float f[4];
11 __m128 v;
12 } vector4_t;
14 void
15 swizzle (const void *a, vector4_t * b, vector4_t * c)
17 b->v = _mm_loadl_pi (b->v, (__m64 *) a);
18 c->v = _mm_loadl_pi (c->v, ((__m64 *) a) + 1);
21 /* While one legal rendering of each statement would be movaps;movlps;movaps,
22 we can implmenent this with just movlps;movlps. Since we do now, anything
23 less would be a regression. */
24 /* { dg-final { scan-assembler-not "movaps" } } */
25 /* { dg-final { scan-assembler "movlps" } } */