PR target/55146
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / slp-perm-2.c
blob27156f4829ebf4450001db856d6f3c0aad061faa
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define M00 100
7 #define M10 216
8 #define M01 1322
9 #define M11 13
10 #define M02 74
11 #define M12 191
13 #define N 16
15 void __attribute__((noinline))
16 foo (unsigned int *__restrict__ pInput, unsigned int *__restrict__ pOutput)
18 unsigned int i, a, b;
20 for (i = 0; i < N / 2; i++)
22 a = *pInput++;
23 b = *pInput++;
25 *pOutput++ = M00 * a + M01 * b;
26 *pOutput++ = M10 * a + M11 * b;
30 int main (int argc, const char* argv[])
32 unsigned int input[N], output[N], i;
33 unsigned int check_results[N] = {1322, 13, 4166, 471, 7010, 929, 9854, 1387, 12698, 1845, 15542, 2303, 18386, 2761, 21230, 3219};
35 check_vect ();
37 for (i = 0; i < N; i++)
39 input[i] = i%256;
40 output[i] = 0;
41 __asm__ volatile ("");
44 foo (input, output);
46 for (i = 0; i < N; i++)
48 if (output[i] != check_results[i])
49 abort ();
50 __asm__ volatile ("");
53 return 0;
56 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_perm } } } */
57 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { target vect_perm } } } */
58 /* { dg-final { cleanup-tree-dump "vect" } } */