cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-vfa-vect-61.c
blobd0334e3ba90f511fd6c0bc5faa72d78c07510cd9
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-require-effective-target vect_float } */
4 #include <stdarg.h>
5 #include <string.h>
6 #include "tree-vect.h"
8 #define N 256
10 __attribute__ ((noinline))
11 void bar (float *pa, float *pb, float *pc)
13 int i;
15 /* check results: */
16 #pragma GCC novector
17 for (i = 0; i < N/2; i++)
19 if (pa[i] != (pb[i+1] * pc[i+1]))
20 abort ();
23 return;
26 __attribute__ ((noinline))
27 void foo (float *pb, float *pc)
29 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
30 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
31 memcpy (pb, b, sizeof (b));
32 memcpy (pc, c, sizeof (c));
35 /* Unaligned pointer read accesses with known alignment,
36 and an unaligned write access with unknown alignment.
37 The loop bound is iunknown.
38 Can't prove that the pointers don't alias.
39 vect-57.c is similar to this one with one difference:
40 the loop bound is known.
41 vect-60.c is similar to this one with two differences:
42 aliasing is not a problem, and the write access is unaligned. */
44 __attribute__ ((noinline)) int
45 main1 (int n , float *pa)
47 int i;
48 float b[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
49 float c[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
50 float *pb = b;
51 float *pc = c;
53 foo (pb, pc);
55 for (i = 0; i < n/2; i++)
57 pa[i] = pb[i+1] * pc[i+1];
60 bar (pa,pb,pc);
62 return 0;
65 int main (void)
67 int i;
68 int n=N;
69 float a[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
71 check_vect ();
72 main1 (n,a);
74 return 0;
77 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail { vect_no_align && { ! vect_hw_misalign } } } } } */