Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / vect / vect-16.c
blobd5b60deb2a7754798b29504b70b3dc5672c2b23a
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
7 #define DIFF 240
9 int main1 ()
11 int i;
12 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
13 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
14 float diff;
16 /* Not vectorizable yet (reduction). */
17 diff = 0;
18 for (i = 0; i < N; i++) {
19 diff += (b[i] - c[i]);
22 /* check results: */
23 if (diff != DIFF)
24 abort ();
26 return 0;
29 int main (void)
31 check_vect ();
33 return main1 ();
36 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail *-*-* } } } */
37 /* { dg-final { cleanup-tree-dump "vect" } } */