[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.base / recurse.c
blob821c2de6de7723edc580f4f42666eb567f44c689
1 /* Trivial code used to test watchpoints in recursive code and
2 auto-deletion of watchpoints as they go out of scope. */
4 static int
5 recurse (int a)
7 int b = 0;
9 if (a == 1)
10 return 1;
12 b = a;
13 b *= recurse (a - 1);
14 return b;
17 int main()
19 recurse (10);
20 return 0;