Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vpermilps-1.c
blob146f555673d9b188c32aa976cdabf7e3a91e9fbe
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 #ifndef CTRL
8 #define CTRL 11
9 #endif
11 void static
12 avx_test ()
14 union128 u, s;
15 float e[4];
17 s.x = _mm_set_ps (1, 2, 3, 4);
18 u.x = _mm_permute_ps(s.x, CTRL);
20 e[0] = s.a[ (CTRL & 0x03)];
21 e[1] = s.a[((CTRL & 0x0c) >> 2)];
22 e[2] = s.a[((CTRL & 0x30) >> 4)];
23 e[3] = s.a[((CTRL & 0xc0) >> 6)];
25 if (check_union128 (u, e))
26 abort ();