diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-breakpoint.c | 1 | ||||
-rw-r--r-- | gdb/python/py-unwind.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index a66e553..e1db674 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -516,7 +516,6 @@ static int bppy_set_commands (PyObject *self, PyObject *newvalue, void *closure) { gdbpy_breakpoint_object *self_bp = (gdbpy_breakpoint_object *) self; - struct breakpoint *bp = self_bp->bp; struct gdb_exception except = exception_none; BPPY_SET_REQUIRE_VALID (self_bp); diff --git a/gdb/python/py-unwind.c b/gdb/python/py-unwind.c index 569d1f4..469ae48 100644 --- a/gdb/python/py-unwind.c +++ b/gdb/python/py-unwind.c @@ -329,8 +329,6 @@ static void unwind_infopy_dealloc (PyObject *self) { unwind_info_object *unwind_info = (unwind_info_object *) self; - int i; - saved_reg *reg; Py_XDECREF (unwind_info->pending_frame); delete unwind_info->saved_regs; |