From 59f66be3aca7ef310c1d4464e93b251fe87135e0 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sat, 19 May 2018 08:54:44 +0200 Subject: Remove useless variable int i in backtrace_command_1 value of int i was not used in the loop or after the loop. Pushed as obvious. --- gdb/ChangeLog | 4 ++++ gdb/stack.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4c213ae..b15d8d1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2018-05-19 Philippe Waroquiers + * stack.c (backtrace_command_1): Remove useless variable int i. + +2018-05-19 Philippe Waroquiers + * stack.c (print_frame_info): Fix comment. 2018-05-18 Tom Tromey diff --git a/gdb/stack.c b/gdb/stack.c index c44423c..74c9253 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1696,7 +1696,6 @@ backtrace_command_1 (const char *count_exp, frame_filter_flags flags, { struct frame_info *fi; int count; - int i; int py_start = 0, py_end = 0; enum ext_lang_bt_status result = EXT_LANG_BT_ERROR; @@ -1779,7 +1778,7 @@ backtrace_command_1 (const char *count_exp, frame_filter_flags flags, count = -1; } - for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi)) + for (fi = trailing; fi && count--; fi = get_prev_frame (fi)) { QUIT; -- cgit v1.1