1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse" } */
3 /* { dg-require-effective-target sse } */
4 
5 #ifndef CHECK_H
6 #define CHECK_H "sse-check.h"
7 #endif
8 
9 #ifndef TEST
10 #define TEST sse_test
11 #endif
12 
13 #include CHECK_H
14 
15 #include <xmmintrin.h>
16 
17 static void
18 __attribute__((noinline, unused))
test(float * p,__m128 s)19 test (float *p, __m128 s)
20 {
21   return _mm_stream_ps (p, s);
22 }
23 
24 static void
TEST(void)25 TEST (void)
26 {
27   union128 u;
28   float e[4] __attribute__ ((aligned(16)));
29 
30   u.x = _mm_set_ps (24.43, 68.346, 43.35, 546.46);
31   test (e, u.x);
32 
33   if (check_union128 (u, e))
34     abort ();
35 }
36