hppa: Fix indirect_goto constraint
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-andps-1.c
blobe3d3419e4977dc39aadefa2e5b618c62009742fb
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse" } */
3 /* { dg-require-effective-target sse } */
5 #ifndef CHECK_H
6 #define CHECK_H "sse-check.h"
7 #endif
9 #ifndef TEST
10 #define TEST sse_test
11 #endif
13 #include CHECK_H
15 #include <xmmintrin.h>
17 static __m128
18 __attribute__((noinline, unused))
19 test (__m128 s1, __m128 s2)
21 return _mm_and_ps (s1, s2);
24 static void
25 TEST (void)
27 union128 u, s1, s2;
28 union
30 float f[4];
31 int i[4];
32 }source1, source2, e;
33 float f[4];
35 s1.x = _mm_set_ps (34, 545, 955, 67);
36 s2.x = _mm_set_ps (67, 4, 57, 897);
38 _mm_storeu_ps (source1.f, s1.x);
39 _mm_storeu_ps (source2.f, s2.x);
41 u.x = test (s1.x, s2.x);
43 e.i[0] = source1.i[0] & source2.i[0];
44 e.i[1] = source1.i[1] & source2.i[1];
45 e.i[2] = source1.i[2] & source2.i[2];
46 e.i[3] = source1.i[3] & source2.i[3];
47 __builtin_memcpy (f, e.f, sizeof (f));
49 if (check_union128 (u, f))
50 abort ();