Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / vect / vect-ifcvt-16.c
blob8071c87d09c13a7ccbbb0db8e0300a19d3617a09
1 /* { dg-require-effective-target vect_condition } */
2 /* { dg-require-effective-target vect_float } */
4 #include <stdarg.h>
5 #include <signal.h>
6 #include "tree-vect.h"
8 #define N 16
9 #define MAX 42
11 extern void abort(void);
13 float A[N] = {36,39,42,45,43,32,21,42,23,34,45,56,67,42,89,11};
14 float B[N] = {42,42,0,42,42,42,42,0,42,42,42,42,42,0,42,42};
16 int main ()
18 int i, j;
20 check_vect ();
22 for (i = 0; i < 16; i++)
23 A[i] = ( A[i] != MAX ? MAX : 0);
25 /* check results: */
26 for (i = 0; i < N; i++)
27 if (A[i] != B[i])
28 abort ();
30 return 0;
33 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
34 /* { dg-final { cleanup-tree-dump "vect" } } */