From 8ec235834d454a66a89fe16bc62e11497eb79078 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 10 Sep 2018 17:11:01 +0100 Subject: [PATCH] Remove unused variable in record-btrace.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit old_inferior_ptid is unused, this is caught by a gcc built from git recently, not sure about previous versions: /home/emaisin/src/binutils-gdb/gdb/record-btrace.c: In function ‘frame_info* get_thread_current_frame(thread_info*)’: /home/emaisin/src/binutils-gdb/gdb/record-btrace.c:1974:10: error: unused variable ‘old_inferior_ptid’ [-Werror=unused-variable] 1974 | ptid_t old_inferior_ptid; | ^~~~~~~~~~~~~~~~~ gdb/ChangeLog: * record-btrace.c (get_thread_current_frame): Remove old_inferior_ptid. --- gdb/ChangeLog | 5 +++++ gdb/record-btrace.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 392d77a..4c42126 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-09-10 Simon Marchi + + * record-btrace.c (get_thread_current_frame): Remove + old_inferior_ptid. + 2018-09-10 Jerome Guitton * ada-lang.c (ada_value_struct_elt): Call ada_to_fixed_type diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c index eafecd9..8f1346e 100644 --- a/gdb/record-btrace.c +++ b/gdb/record-btrace.c @@ -1971,7 +1971,6 @@ static struct frame_info * get_thread_current_frame (struct thread_info *tp) { struct frame_info *frame; - ptid_t old_inferior_ptid; int executing; /* Set current thread, which is implicitly used by -- 2.7.4