aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/forgetcc.c
blob: 7738139d591cd596865c7346ad738cfc8d407ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

foo (hp, p, a)
     short *hp;
     int *p;
     int a;
{
  hp[10] = a;
  p[0] = 10;
  if (hp[10] > 0)
    return 1;
  return 0;
}