mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
13 lines
99 B
C
13 lines
99 B
C
|
void
|
||
|
foo(int x) {
|
||
|
if (x&3)
|
||
|
foo (x-1);
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
int i;
|
||
|
|
||
|
for (i=0; i< 1024; i++)
|
||
|
foo(i);
|
||
|
}
|