1999-04-16 01:35:26 +00:00
|
|
|
/* This program is used to test the "jump" command. There's nothing
|
|
|
|
particularly deep about the functionality nor names in here.
|
|
|
|
*/
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
static int square (int x)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2014-10-24 11:57:22 +00:00
|
|
|
return x*x; /* out-of-func */
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
int main ()
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int i = 99;
|
|
|
|
|
|
|
|
i++;
|
2014-10-24 11:57:22 +00:00
|
|
|
i = square (i); /* bp-on-call */
|
|
|
|
i--; /* bp-on-non-call */
|
1999-06-28 16:06:02 +00:00
|
|
|
return 0;
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|