]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/recurse.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / recurse.c
1 /* Trivial code used to test watchpoints in recursive code and
2 auto-deletion of watchpoints as they go out of scope. */
3
4 static int
5 recurse (a)
6 int a;
7 {
8 int b = 0;
9
10 if (a == 1)
11 return 1;
12
13 b = a;
14 b *= recurse (a - 1);
15 return b;
16 }
17
18 main()
19 {
20 #ifdef usestubs
21 set_debug_traps();
22 breakpoint();
23 #endif
24 recurse (10);
25 }