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; }