Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-8.c
blob7712a02cfab60f0d067bb0903cb9c6f94d3885df
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 float b[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
9 float a[N];
11 int main1 (int n)
13 int i;
15 /* Vectorized: unknown loop bound). */
16 for (i = 0; i < n; i++){
17 a[i] = b[i];
20 /* check results: */
21 for (i = 0; i < n; i++)
23 if (a[i] != b[i])
24 abort ();
27 return 0;
30 int main (void)
32 check_vect ();
34 return main1 (N);
37 /* Need misalignment support, or cgraph to delay emitting the arrays until
38 after vectorization can force-align them. */
39 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail vect_no_align } } } */