* breakpoints.c (watch_command_1): Use internal breakpoint

when setting a watchpoint_scope breakpoint.
This commit is contained in:
Keith Seitz 2002-08-20 20:03:35 +00:00
parent 216b504fa7
commit e86ae29ff5
2 changed files with 7 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2002-08-20 Keith Seitz <keiths@redhat.com>
* breakpoints.c (watch_command_1): Use internal breakpoint
when setting a watchpoint_scope breakpoint.
2002-08-20 Elena Zannoni <ezannoni@redhat.com>
* gdbtypes.c (build_builtin_type_vec64): Add name to type.

View File

@ -5331,16 +5331,8 @@ watch_command_1 (char *arg, int accessflag, int from_tty)
if (prev_frame)
{
struct breakpoint *scope_breakpoint;
struct symtab_and_line scope_sal;
INIT_SAL (&scope_sal); /* initialize to zeroes */
scope_sal.pc = get_frame_pc (prev_frame);
scope_sal.section = find_pc_overlay (scope_sal.pc);
scope_breakpoint = set_raw_breakpoint (scope_sal,
bp_watchpoint_scope);
set_breakpoint_count (breakpoint_count + 1);
scope_breakpoint->number = breakpoint_count;
scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
bp_watchpoint_scope);
scope_breakpoint->enable_state = bp_enabled;