... and make it return the *right* value when it goes out of bounds.
[deliverable/binutils-gdb.git] / gprof / t.c
1 void
2 foo(int x) {
3 if (x&3)
4 foo (x-1);
5 }
6
7 main() {
8 int i;
9
10 for (i=0; i< 1024; i++)
11 foo(i);
12 }
This page took 0.029423 seconds and 4 git commands to generate.