OSDN Git Service

694e5ad8603d54f0ce2dd1b167213b2ac1110c88
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-72.c
1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 128
7
8 /* unaligned load.  */
9
10 int main1 ()
11 {
12   int i;
13   char ia[N];
14   char ib[N+1];
15
16   for (i=0; i < N+1; i++)
17     {
18       ib[i] = i;
19     }
20
21   for (i = 1; i < N+1; i++)
22     {
23       ia[i-1] = ib[i];
24     }
25
26   /* check results:  */
27   for (i = 1; i <= N; i++)
28     {
29       if (ia[i-1] != ib[i])
30         abort ();
31     }
32
33   return 0;
34 }
35
36 int main (void)
37
38   check_vect ();
39   
40   return main1 ();
41 }
42
43 /* These are not yet vectorized on targets that do not model alignment-handling
44    mechanisms.  */
45 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail i?86-*-* x86_64-*-* sparc*-*-* } } } */
46