2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-movlhps-1.c
blob4ce3edf59e74eb3db2f60e8bbccd88cfa3cbfc14
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_movelh_ps (a, b);
24 static void
25 TEST (void)
27 union128 u, s1, s2;
28 float e[4];
30 s1.x = _mm_set_ps (24.43, 68.346, 43.35, 546.46);
31 s2.x = _mm_set_ps (1.17, 2.16, 3.15, 4.14);
32 u.x = _mm_set1_ps (0.0);
34 u.x = test (s1.x, s2.x);
36 e[0] = s1.a[0];
37 e[1] = s1.a[1];
38 e[2] = s2.a[0];
39 e[3] = s2.a[1];
41 if (check_union128 (u, e))
42 abort ();