OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-ifcvt-4.c
1 /* { dg-require-effective-target vect_condition } */
2 /* { dg-require-effective-target vect_int } */
3
4 #include <stdarg.h>
5 #include <signal.h>
6 #include "tree-vect.h"
7
8 #define N 16
9 #define MAX 42
10
11 int A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11};
12 int B[N] = {42,42,42,0,0,42,42,42,42,42,0,0,0,0,0,42};
13
14 extern void abort(void); 
15
16 int main ()
17 {  
18   int i, j;
19
20   check_vect ();
21
22   for (i = 0; i < 16; i++)
23     A[i] = ( A[i] <= MAX ? MAX : 0); 
24
25   /* check results:  */
26   for (i = 0; i < N; i++)
27     if (A[i] != B[i])
28       abort ();
29
30   return 0;
31 }
32
33
34
35 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
36 /* { dg-final { cleanup-tree-dump "vect" } } */