PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-movss-1.c
blobee53d5faf1131104be5c97ff597db4f8b6bad1a0
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 (float *e)
21 return _mm_load_ss (e);
24 static void
25 TEST (void)
27 union128 u;
28 float e[4] = {1.1, 2.2, 3.3, 4.4};
30 u.x = _mm_set_ps (2134.3343,1234.635654, 1.2234, 876.8976);
32 u.x = test (e);
34 e[1] = u.a[1];
35 e[2] = u.a[2];
36 e[3] = u.a[3];
38 if (check_union128 (u, e))
39 abort ();