1 /* { dg-do compile } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } } */
3 /* { dg-options "-mdejagnu-cpu=power7 -O2 -ftree-vectorize -fno-tree-loop-distribute-patterns -fno-vect-cost-model -fdump-tree-vect-details" } */
4 /* { dg-require-effective-target powerpc_vsx } */
6 /* Taken from vect/vect-align-1.c. */
10 /* Compile time known misalignment. Cannot use loop peeling to align
18 } __attribute__((packed
));
20 int x
[N
] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
22 __attribute__ ((noinline
)) int
23 main1 (struct foo
* __restrict__ p
)
27 for (i
= 0; i
< N
; i
++)
33 for (i
= 0; i
< N
; i
++)
45 struct foo
*p
= malloc (2*sizeof (struct foo
));
51 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
52 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 1 "vect" } } */
53 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */