PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-xorps-1.c
blob8ec500838ae6de7df17e9c2f8b5717c5d68f8b7e
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_xor_ps (s1, s2);
24 static void
25 TEST (void)
27 union {
28 float f[4];
29 int i[4];
30 }source1, source2, e;
32 union128 u, s1, s2;
33 int i;
35 s1.x = _mm_set_ps (24.43, 68.346, 43.35, 546.46);
36 s2.x = _mm_set_ps (1.17, 2.16, 3.15, 4.14);
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 for (i = 0; i < 4; i++)
44 e.i[i] = source1.i[i] ^ source2.i[i];
46 if (check_union128 (u, e.f))
47 abort ();