cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-13.c
blob55904d49173a719da3cfe8fae8ed8ed8bb7f19f7
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-add-options bind_pic_locally } */
3 /* { dg-additional-options "-fdump-tree-optimized-details-blocks" } */
5 #include <stdarg.h>
6 #include "tree-vect.h"
8 #define N 16
10 int a[N];
11 int results[N] = {0,1,2,3,0,0,0,0,0,0,0,0,12,13,14,15};
12 int b[N] = {0,1,2,3,-4,-5,-6,-7,-8,-9,-10,-11,12,13,14,15};
14 __attribute__ ((noinline))
15 int main1()
17 int i;
19 /* Max pattern. */
20 for (i = 0; i < N; i++)
22 a[i] = (b[i] >= 0 ? b[i] : 0);
25 /* Check results */
26 #pragma GCC novector
27 for (i = 0; i < N; i++)
29 if (a[i] != results[i])
30 abort ();
33 return 0;
36 int main (void)
38 check_vect ();
40 return main1 ();
43 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail vect_no_int_min_max } } } */
44 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
45 /* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */