PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse-mulps-1.c
blobde66a28e142f8ebe322dc2b57893568590afd856
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_mul_ps (s1, s2);
24 static void
25 TEST (void)
27 union128 u, s1, s2;
28 float e[4];
30 s1.x = _mm_set_ps (41124.234,6678.346,8653.65635,856.43576);
31 s2.x = _mm_set_ps (2134.3343,6678.346,453.345635,54646.464356);
32 u.x = test (s1.x, s2.x);
34 e[0] = s1.a[0] * s2.a[0];
35 e[1] = s1.a[1] * s2.a[1];
36 e[2] = s1.a[2] * s2.a[2];
37 e[3] = s1.a[3] * s2.a[3];
39 if (check_union128 (u, e))
40 abort ();