From: Yao Qi Date: Thu, 24 Oct 2013 00:46:07 +0000 (+0800) Subject: Remove global traceframe_fun and traceframe_sal X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24a008139eaf7de2890c3e948f3d22eac4e0a9d3;p=binutils-gdb.git Remove global traceframe_fun and traceframe_sal I happen to see traceframe_fun and traceframe_sal are static variables, which are not necessary to me. They are only used in set_traceframe_context, and they are not stateful. This patch is to remove them. gdb: 2013-10-24 Yao Qi * tracepoint.c (traceframe_fun): Remove. (traceframe_sal): Remove. (set_traceframe_context): Add local variables. --- diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index c086587ca7e..a7ccb50540c 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -132,12 +132,6 @@ static int traceframe_number; /* Tracepoint for last traceframe collected. */ static int tracepoint_number; -/* Symbol for function for last traceframe collected. */ -static struct symbol *traceframe_fun; - -/* Symtab and line for last traceframe collected. */ -static struct symtab_and_line traceframe_sal; - /* The traceframe info of the current traceframe. NULL if we haven't yet attempted to fetch it, or if the target does not support fetching this object, or if we're not inspecting a traceframe @@ -268,6 +262,8 @@ static void set_traceframe_context (struct frame_info *trace_frame) { CORE_ADDR trace_pc; + struct symbol *traceframe_fun; + struct symtab_and_line traceframe_sal; /* Save as globals for internal use. */ if (trace_frame != NULL