2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr65947-11.c
blob1c54979ede02c645ec2dcb358e1bf547d0ef4fe5
1 /* { dg-require-effective-target vect_condition } */
3 #include "tree-vect.h"
5 extern void abort (void) __attribute__ ((noreturn));
7 #define N 37
9 /* Re-use the result of the condition inside the loop. Will fail to
10 vectorize. */
12 unsigned int
13 condition_reduction (unsigned int *a, unsigned int min_v, unsigned int *b)
15 unsigned int last = N + 65;
17 for (unsigned int i = 0; i < N; i++)
19 if (b[i] < min_v)
20 last = i;
21 a[i] = last;
23 return last;
26 int
27 main (void)
29 unsigned int a[N] = {
30 31, 32, 33, 34, 35, 36, 37,
31 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
32 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
33 11, 12, 13, 14, 15, 16, 17, 18, 19, 20
35 unsigned int b[N] = {
36 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
37 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
38 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
39 31, 32, 33, 34, 35, 36, 37
42 check_vect ();
44 unsigned int ret = condition_reduction (a, 16, b);
46 if (ret != 29)
47 abort ();
49 return 0;
52 /* { dg-final { scan-tree-dump-not "LOOP VECTORIZED" "vect" } } */