Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / vect / vect-8.c
blob62f819e045270eddbc36f7a1c2dbc91a80965b07
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 __attribute__ ((noinline))
12 int main1 (int n)
14 int i;
16 /* Vectorized: unknown loop bound). */
17 for (i = 0; i < n; i++){
18 a[i] = b[i];
21 /* check results: */
22 for (i = 0; i < n; i++)
24 if (a[i] != b[i])
25 abort ();
28 return 0;
31 int main (void)
33 check_vect ();
35 return main1 (N);
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
39 /* { dg-final { cleanup-tree-dump "vect" } } */