]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/recurse.c
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / recurse.c
CommitLineData
ef44eed1
SS
1/* Trivial code used to test watchpoints in recursive code and
2 auto-deletion of watchpoints as they go out of scope. */
3
4static int
5recurse (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
18main()
19{
20 recurse (10);
21}