OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / sse-sqrtps-1.c
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse" } */
3
4 #ifndef CHECK_H
5 #define CHECK_H "sse-check.h"
6 #endif
7
8 #ifndef TEST
9 #define TEST sse_test
10 #endif
11
12 #include CHECK_H
13
14 #include <xmmintrin.h>
15
16 static __m128
17 __attribute__((noinline, unused))
18 test (__m128 s1)
19 {
20   return _mm_sqrt_ps (s1); 
21 }
22
23 static void
24 TEST (void)
25 {
26   union128 u, s1;
27   float e[4];
28   int i;
29    
30   s1.x = _mm_set_ps (24.43, 68.346, 43.35, 546.46);
31   u.x = test (s1.x); 
32   
33   for (i = 0; i < 4; i++) {
34     __m128 tmp = _mm_load_ss (&s1.a[i]);
35     tmp = _mm_sqrt_ss (tmp);
36     _mm_store_ss (&e[i], tmp);
37     }
38
39   if (check_union128 (u, e))
40     abort ();
41 }