diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-05-07 01:12:14 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-05-07 01:12:14 +0000 |
commit | 1c5465ac6061382a64975cbe2e619054bfc71c45 (patch) | |
tree | ba85ab4553ee5d3bd44e59aeb1c85f1329badff1 /gdb/frame-unwind.c | |
parent | 1be757cfff9173963cf2a9dd482037dc00b959e7 (diff) | |
download | binutils-gdb-1c5465ac6061382a64975cbe2e619054bfc71c45.tar.gz |
2010-05-06 Michael Snyder <msnyder@vmware.com>
* frame-unwind.c (frame_unwind_find_by_frame):
Delete unused variable.
* gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
* cp-support.c (mangled_name_to_comp): Delete unused variable.
(method_name_from_physname): Delete unused variable.
(cp_func_name): Delete unused variable.
(cp_validate_operator): Delete unused variable.
* cp-namespace.c (cp_scan_for_anonymous_namespaces):
Delete unused variable.
* trad-frame.c (trad_frame_get_prev_register):
Delete unused variable.
* tramp-frame.c (tramp_frame_cache): Delete unused variable.
Diffstat (limited to 'gdb/frame-unwind.c')
-rw-r--r-- | gdb/frame-unwind.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/frame-unwind.c b/gdb/frame-unwind.c index 6f1de9c7bb6..aaf950a1fde 100644 --- a/gdb/frame-unwind.c +++ b/gdb/frame-unwind.c @@ -90,11 +90,10 @@ frame_unwind_append_unwinder (struct gdbarch *gdbarch, const struct frame_unwind * frame_unwind_find_by_frame (struct frame_info *this_frame, void **this_cache) { - int i; struct gdbarch *gdbarch = get_frame_arch (this_frame); struct frame_unwind_table *table = gdbarch_data (gdbarch, frame_unwind_data); struct frame_unwind_table_entry *entry; - struct cleanup *old_cleanup; + for (entry = table->list; entry != NULL; entry = entry->next) { struct cleanup *old_cleanup; |