+Tue Sep 21 17:48:14 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ * breakpoint.c (breakpoint_1): Support bp_call_dummy.
+
Tue Sep 21 17:06:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* elfread.c (record_minimal_symbol_and_info): Guess the section to
pops the dummy frame. */
bs_class = bp_silent;
retval.call_dummy = 1;
+ break;
}
current_action = table[(int)bs_class][(int)current_action];
}
CORE_ADDR last_addr = (CORE_ADDR)-1;
int found_a_breakpoint = 0;
static char *bptypes[] = {"breakpoint", "until", "finish", "watchpoint",
- "longjmp", "longjmp resume", "step resume"};
+ "longjmp", "longjmp resume", "step resume",
+ "call dummy" };
static char *bpdisps[] = {"del", "dis", "keep"};
static char bpenables[] = "ny";
char wrap_indent[80];
case bp_longjmp:
case bp_longjmp_resume:
case bp_step_resume:
+ case bp_call_dummy:
if (addressprint)
printf_filtered ("%s ", local_hex_string_custom(b->address, "08"));
/* FIXME In the future, we should fold all other breakpoint-like things into
here. This includes:
- * call-dummy (the breakpoint at the end of a subroutine stub that gdb
- uses to call functions in the target) (definately).
-
* single-step (for machines where we have to simulate single stepping)
(probably, though perhaps it is better for it to look as much as
possible like a single-step to wait_for_inferior). */