aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/forgetcc.c
blob: 4105408a050731e8746157538f88fdc0a070eb3f (plain)
1
2
3
4
5
6
7
8
9
10
11
foo (hp, p, a)
     short *hp;
     int *p;
     int a;
{
  hp[10] = a;
  p[0] = 10;
  if (hp[10] > 0)
    return 1;
  return 0;
}