aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr85814.c
blob: 8d16c53e9c03fc25c5f2011dffe7ffae29915410 (plain)
1
2
3
4
5
6
7
int a;
void b(char *c)
{
  c += 4;
  for (int i = 0; i < 4; i++)
    a = *c++ = 2;
}