1 /* { dg-do run { target vect_cmdline_needed } } */
2 /* { dg-options "-O2 -ftree-vectorize -ftree-vectorizer-verbose=3 -fdump-tree-vect-stats" } */
8 #if LONG_MAX == 2147483647
9 typedef short half_word
;
11 typedef int half_word
;
18 half_word ic
[N
] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
19 half_word ib
[N
] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
21 /* Not worthwhile, only 2 parts per int */
22 for (i
= 0; i
< N
; i
++)
24 ia
[i
] = ib
[i
] + ic
[i
];
28 for (i
= 0; i
< N
; i
++)
30 if (ia
[i
] != ib
[i
] + ic
[i
])
38 /* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" } } */
39 /* { dg-final { cleanup-tree-dump "vect" } } */