1 2 3 4 5 6 7 8 9 10 11 12 13 14
foo (a, p) register int a; int *p; { for (a = 10000000; a >= *p; a--) ; } main () { int a; foo (a, a); }