2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-4.c
blobd86fea11e7967b2c2e0ed08f599d6b1e0e7b9f0f
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 20
8 float a[N];
9 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
10 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
12 __attribute__ ((noinline)) int
13 main1 ()
15 int i;
17 for (i = 0; i < N; i++)
19 a[i] = b[i] * c[i];
22 /* check results: */
23 for (i = 0; i <N; i++)
25 if (a[i] != b[i] * c[i])
26 abort ();
29 return 0;
32 int main (void)
34 check_vect ();
36 return main1 ();
39 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
40 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
41 /* { dg-final { cleanup-tree-dump "vect" } } */