PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx2-vpsubusw-2.c
blob7fd16400a917a4a53c67f30caa1a7bcbe932886a
1 /* { dg-do run } */
2 /* { dg-options "-mavx2 -O2" } */
3 /* { dg-require-effective-target avx2 } */
5 #include "avx2-check.h"
7 void static
8 avx2_test (void)
10 union256i_w u, s1, s2;
11 unsigned short e[16];
12 int i, tmp;
14 s1.x = _mm256_set_epi16 (1, 2, 3, 4, 10, 20, 30, 90,
15 65531, 40, 100, 15, 98, 25, 98, 7);
17 s2.x = _mm256_set_epi16 (88, 44, 33, 220, 11, 98, 76, 100,
18 34, 78, 39, 6, 3, 4, 5, 219);
20 u.x = _mm256_subs_epu16 (s1.x, s2.x);
22 for (i = 0; i < 16; i++)
24 tmp = (unsigned short) s1.a[i] - (unsigned short) s2.a[i];
26 if (tmp < 0)
27 tmp = 0;
29 e[i] = tmp;
32 if (check_union256i_w (u, e))
33 abort ();