binutils-gdb/gdb/testsuite/gdb.base/recurse.c

22 lines
289 B
C
Raw Normal View History

/* Trivial code used to test watchpoints in recursive code and
auto-deletion of watchpoints as they go out of scope. */
1999-06-28 18:06:02 +02:00
static int
recurse (int a)
{
int b = 0;
if (a == 1)
return 1;
b = a;
b *= recurse (a - 1);
return b;
}
1999-06-28 18:06:02 +02:00
int main()
{
recurse (10);
1999-06-28 18:06:02 +02:00
return 0;
}