aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr36817.c
blob: 396f491ec0500768b989387bdf1430c8755051bc (plain)
1
2
3
4
5
6
7
8
9
10
void xxx()
{
  unsigned i;
  unsigned *p=0;
  for(i=0; i<4; ++i)
    *p++=0;
  for(i=0; i<4; ++i)
    *p++=0;
}