Imported Upstream version 4.7.3
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / vect / O3-pr45971.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3
4 void
5 foo (int *x, int *y)
6 {
7   int i;
8   for (i = 0; i < 11; i++)
9     y[i] = (x[i] == 1) ? i + 1 : -(i + 1);
10 }
11
12 /* { dg-final { cleanup-tree-dump "vect" } } */
13