Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / vect-83.c
blob5c21cbbe341b7321f4017272ff584e6a850bd45c
1 /* { dg-do run { target powerpc*-*-* } } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 int main1 ()
9 {
10 long long unsigned int ca[N];
11 int i;
13 for (i = 0; i < N; i++)
15 ca[i] = 2;
18 /* check results: */
19 for (i = 0; i < N; i++)
21 if (ca[i] != 2)
22 abort ();
25 return 0;
28 int main (void)
30 check_vect ();
32 return main1 ();
35 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
36 /* { dg-final { cleanup-tree-dump "vect" } } */