Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-110.c
blob3fa4f4146858f2dc859f4e70cac1b3b832fb645a
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 int
9 main1 (void)
11 int i;
12 float a[N];
13 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
14 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
16 /* Too conservative dependence test. */
17 for (i = 0; i < N - 1; i++){
18 a[i] = b[i] + c[i];
19 a[i+1] = b[i] + c[i];
22 /* Check results. */
23 for (i = 0; i < N - 1; i++){
24 if (a[i] != b[i] + c[i])
25 abort ();
28 return 0;
31 int main (void)
33 check_vect ();
34 return main1 ();
37 /* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" } } */
38 /* { dg-final { cleanup-tree-dump "vect" } } */