Merge branches/gcc-4_9-branch rev 225109.
[official-gcc.git] / gcc-4_9-branch / gcc / testsuite / gcc.dg / vect / pr20122.c
blobc9c523c5d122d1ebc8f516a9d1b65d22d7fa10f9
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 short Kernshort[24] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
7 static void VecBug(short Kernel[8][24]) __attribute__((noinline));
8 static void VecBug2(short Kernel[8][24]) __attribute__((noinline));
10 /* Kernel may alias Kernshort - a global array.
11 Use versioning for aliasing. */
12 static void VecBug(short Kernel[8][24])
14 int k,i;
15 for (k = 0; k<8; k++)
16 for (i = 0; i<24; i++)
17 Kernshort[i] = Kernel[k][i];
20 /* Vectorizable: Kernshort2 is local. */
21 static void VecBug2(short Kernel[8][24])
23 int k,i;
24 short Kernshort2[24] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
25 for (k = 0; k<8; k++)
26 for (i = 0; i<24; i++)
27 Kernshort2[i] = Kernel[k][i];
29 for (k = 0; k<8; k++)
30 for (i = 0; i<24; i++)
31 if (Kernshort2[i] != Kernel[k][i])
32 abort ();
35 int main (int argc, char **argv)
37 check_vect ();
39 short Kernel[8][24] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
40 int k,i;
42 for (k = 0; k<8; k++)
43 for (i = 0; i<24; i++)
44 Kernel[k][i] = 0;
46 VecBug(Kernel);
47 VecBug2(Kernel);
49 return 0;
52 /* The loops in VecBug and VecBug2 require versioning for alignment.
53 The loop in main is aligned. */
54 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 3 "vect" } } */
55 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 2 "vect" { target { vect_no_align && { ! vect_hw_misalign } } } } } */
56 /* { dg-final { cleanup-tree-dump "vect" } } */