[committed] Fix previously latent bug in reorg affecting cris port
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse-pminsw-1.c
blobd8c09cfb2842de4eebf131da4937d715ca5ffdaf
1 /* { dg-do run } */
2 /* { dg-options "-O3 -mvsx" } */
3 /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
4 /* { dg-require-effective-target p8vector_hw } */
6 #define NO_WARN_X86_INTRINSICS 1
8 #ifndef CHECK_H
9 #define CHECK_H "sse-check.h"
10 #endif
12 #include CHECK_H
14 #ifndef TEST
15 #define TEST sse_test_pminsw_1
16 #endif
18 #include <xmmintrin.h>
20 static __m64
21 __attribute__((noinline, unused))
22 test (__m64 s1, __m64 s2)
24 return _mm_min_pi16 (s1, s2);
27 static void
28 TEST (void)
30 __m64_union u, e, s1, s2;
31 int i;
33 s1.as_m64 = _mm_set_pi16 (1, 2, 3, 4);
34 s2.as_m64 = _mm_set_pi16 (4, 3, 2, 1);
35 u.as_m64 = test (s1.as_m64, s2.as_m64);
37 for (i = 0; i < 4; i++)
38 e.as_short[i] =
39 s1.as_short[i] < s2.as_short[i] ? s1.as_short[i] : s2.as_short[i];
41 if (u.as_m64 != e.as_m64)
42 abort ();