aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr45633.c
blob: 456d51f1aefff1078b721c7aac1d033e2ef10a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR tree-optimization/45633 */
/* { dg-do compile } */

int s[32];
unsigned char *t[32];

void
foo (void)
{
  int i;
  for (i = 0; i < 32; i++)
    t[i] -= s[i];
}

/* { dg-final { cleanup-tree-dump "vect" } } */