Add documentation for musttail attribute
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-cvtss2sd-1.c
blob19f2aa0ad1e7944da8161a542a427f691a9684a7
1 /* { dg-do run } */
2 /* { dg-options "-O3 -mvsx -Wno-psabi" } */
3 /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
4 /* { dg-require-effective-target p8vector_hw } */
6 #ifndef CHECK_H
7 #define CHECK_H "sse2-check.h"
8 #endif
10 #include CHECK_H
12 #ifndef TEST
13 #define TEST sse2_test_cvtss2sd_1
14 #endif
16 #include <emmintrin.h>
18 static __m128d
19 __attribute__((noinline, unused))
20 test (__m128d a, __m128 b)
22 return _mm_cvtss_sd (a, b);
25 static void
26 TEST (void)
28 union128d u, s1;
29 union128 s2;
30 double e[2];
32 s1.x = _mm_set_pd (123.321, 456.987);
33 s2.x = _mm_set_ps (123.321, 456.987, 666.45, 231.987);
35 u.x = test (s1.x, s2.x);
37 e[0] = (double)s2.a[0];
38 e[1] = s1.a[1];
40 if (check_union128d (u, e))
42 #if DEBUG
43 printf ("sse2_test_cvtss2sd_1; check_union128d failed\n");
44 printf ("\t [%f,%f], [%f,%f,%f,%f]\n", s1.a[0], s1.a[1],
45 s2.a[0], s2.a[1], s2.a[2], s2.a[3]);
46 printf ("\t -> \t[%f,%f]\n", u.a[0], u.a[1]);
47 printf ("\texpect\t[%f,%f]\n", e[0], e[1]);
48 #endif
49 abort ();