binutils-gdb/gprof/t.c

13 lines
99 B
C
Executable File

void
foo(int x) {
if (x&3)
foo (x-1);
}
main() {
int i;
for (i=0; i< 1024; i++)
foo(i);
}