Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-iv-8.c
blobc932fa9b142bf66b71fc2963ffabc485ffb8d34b
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 26
8 __attribute__ ((noinline)) int main1 (short X)
9 {
10 unsigned char a[N];
11 unsigned short b[N];
12 unsigned int c[N];
13 short myX = X;
14 int i;
16 /* vectorization of induction with type conversions. */
17 for (i = 0; i < N; i++)
19 a[i] = (unsigned char)X;
20 b[i] = X;
21 c[i] = (unsigned int)X;
22 X++;
25 /* check results: */
26 for (i = 0; i < N; i++)
28 if (a[i] != (unsigned char)myX || b[i] != myX || c[i] != (unsigned int)myX++)
29 abort ();
32 return 0;
35 int main (void)
37 check_vect ();
39 return main1 (3);
42 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail *-*-* } } } */
43 /* Fails to get vectorized due to a redundant cast. Once this is fixed,
44 should be vectorized as follows:
45 dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { vect_pack_trunc && vect_unpack } } }
47 /* { dg-final { cleanup-tree-dump "vect" } } */