From 568fff39de8c6bb812d8cd038467cb5b545b00ad Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 20 Nov 2007 17:37:35 +0000 Subject: Remove unused breakpoint fields. * breakpoint.h (struct breakpoint): Remove from_tty and flag fields. * breakpoint.c (break_command_1): Don't set from_tty and flag field set of breakpoint. (create_ada_exception_breakpoint): Don't set the from_tty field. --- gdb/breakpoint.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'gdb/breakpoint.c') diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 2f4bd8b..81614aa 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5589,8 +5589,6 @@ break_command_1 (char *arg, int flag, int from_tty) b->cond_string = cond_string; b->ignore_count = ignore_count; b->disposition = tempflag ? disp_del : disp_donttouch; - b->from_tty = from_tty; - b->flag = flag; b->condition_not_parsed = 1; mention (b); } @@ -6696,7 +6694,6 @@ create_ada_exception_breakpoint (struct symtab_and_line sal, b->exp_string = exp_string; b->thread = -1; b->ops = ops; - b->from_tty = from_tty; mention (b); } -- cgit v1.1