Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.target / i386 / sse2-movd-1.c
blob2475bbc354ba0d3919bf71f3a09e66d5807447bb
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
4 #ifndef CHECK_H
5 #define CHECK_H "sse2-check.h"
6 #endif
8 #ifndef TEST
9 #define TEST sse2_test
10 #endif
12 #include CHECK_H
14 #include <emmintrin.h>
16 static __m128i
17 __attribute__((noinline, unused))
18 test (int b)
20 return _mm_cvtsi32_si128 (b);
23 static void
24 TEST (void)
26 union128i_d u;
27 int b = 128;
28 int e[4] = {0};
30 u.x = test (b);
32 e[0] = b;
34 if (check_union128i_d (u, e))
35 abort ();