Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr28935.c
blob9a0e70ecf68e8c9d718b46666d9cba3c6e83cbe8
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -ftree-vectorize" } */
4 int col[8];
5 int extend_options(int w, int h, int *map, int x, int y, int index)
7 int dx, dy;
8 for (dx = -1; dx <= +1; dx++)
10 int index = (dy < 0 ? 6-dx : dy > 0 ? 2+dx : 2*(1+dx));
11 if (x+dx >= 0 && x+dx < w && y+dy >= 0 && y+dy < h)
12 col[index] = map[(y+dy)*w+(x+dx)];
13 col[index] = -1;