PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-movss-3.c
bloba090aada7f5131f63fa79059a0781c439adf3162
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 a, __m128 b)
21 return _mm_move_ss (a, b);
24 static void
25 TEST (void)
27 union128 u, s1, s2;
28 float e[4];
30 s1.x = _mm_set_ps (2134.3343,1234.635654, 1.2234, 876.8976);
31 s2.x = _mm_set_ps (1.1, 2.2, 3.3, 4.4);
32 u.x = _mm_set_ps (5.5, 6.6, 7.7, 8.8);
33 u.x = test (s1.x, s2.x);
35 e[0] = s2.a[0];
36 e[1] = s1.a[1];
37 e[2] = s1.a[2];
38 e[3] = s1.a[3];
40 if (check_union128 (u, e))
41 abort ();