Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / vect / vect-ifcvt-5.c
blob5ee9ba628e2ba4fe3262454680fd0412c0cf5657
1 /* { dg-require-effective-target vect_condition } */
3 #include <stdarg.h>
4 #include <signal.h>
5 #include "tree-vect.h"
7 #define N 16
8 #define MAX 42
10 extern void abort(void);
12 int main ()
14 int A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11};
15 int B[N] = {42,42,0,0,0,42,42,42,42,42,0,0,0,0,0,42};
16 int i, j;
18 check_vect ();
20 for (i = 0; i < 16; i++)
21 A[i] = ( A[i] < MAX ? MAX : 0);
23 /* check results: */
24 for (i = 0; i < N; i++)
25 if (A[i] != B[i])
26 abort ();
28 return 0;
33 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
34 /* { dg-final { cleanup-tree-dump "vect" } } */