merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / slp-multitypes-10.c
blob28274017d6fbefb1a9c35e7b3430de0aed5ccca2
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include <stdio.h>
5 #include "tree-vect.h"
7 #define N 8
9 unsigned int in[N*8] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63};
11 struct s
13 unsigned char a;
14 unsigned char b;
17 __attribute__ ((noinline)) int
18 main1 ()
20 int i;
21 struct s out[N*4];
23 for (i = 0; i < N*4; i++)
25 out[i].a = (unsigned char) in[i*2] + 1;
26 out[i].b = (unsigned char) in[i*2 + 1] + 2;
29 /* check results: */
30 for (i = 0; i < N*4; i++)
32 if (out[i].a != (unsigned char) in[i*2] + 1
33 || out[i].b != (unsigned char) in[i*2 + 1] + 2)
34 abort ();
37 return 0;
40 int main (void)
42 check_vect ();
44 main1 ();
46 return 0;
49 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_pack_trunc } } } */
50 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { target vect_pack_trunc } } } */
51 /* { dg-final { cleanup-tree-dump "vect" } } */