+2007-11-20 Vladimir Prus <vladimir@codesourcery.com>
+
+ 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.
+
2007-11-20 David Ung <davidu@mips.com>
Maciej W. Rozycki <macro@mips.com>
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);
}
b->exp_string = exp_string;
b->thread = -1;
b->ops = ops;
- b->from_tty = from_tty;
mention (b);
}
/* Methods associated with this breakpoint. */
struct breakpoint_ops *ops;
- /* Was breakpoint issued from a tty? Saved for the use of pending breakpoints. */
- int from_tty;
-
- /* Flag value for pending breakpoint.
- first bit : 0 non-temporary, 1 temporary.
- second bit : 0 normal breakpoint, 1 hardware breakpoint. */
- int flag;
-
/* Is breakpoint's condition not yet parsed because we found
no location initially so had no context to parse
the condition in. */