]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/jump.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / jump.c
1 /* This program is used to test the "jump" command. There's nothing
2 particularly deep about the functionality nor names in here.
3 */
4
5 static int square (x)
6 int x;
7 {
8 return x*x;
9 }
10
11
12 main ()
13 {
14 int i = 99;
15
16 i++;
17 i = square (i);
18 i--;
19 }