Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / vect-ifcvt-9.c
blob68c9fd44c728f38e6711bbf80445c7a8080fc4f2
1 /* { dg-do run } */
2 /* { dg-require-effective-target vect_condition } */
5 #include <stdarg.h>
6 #include <signal.h>
8 #define N 16
9 #define MAX 42
11 extern void abort(void);
13 int A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11};
14 int B[N] = {0,0,42,42,42,0,0,0,0,0,42,42,42,42,42,0};
15 void foo () __attribute__((always_inline));
16 void foo ()
18 int i, j;
20 for (i = 0; i < 16; i++)
21 A[i] = ( A[i] >= MAX ? MAX : 0);
24 int main ()
27 int i, j;
28 foo ();
29 /* check results: */
30 for (i = 0; i < N; i++)
31 if (A[i] != B[i])
32 abort ();
34 return 0;
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 2 "vect" } } */
39 /* { dg-final { cleanup-tree-dump "vect" } } */