[PATCH] Remove unused parameter in remote_check_symbols.

Yao Qi yao@codesourcery.com
Tue May 28 06:13:00 GMT 2013


Hi,
I happen to see that parameter 'objfile' of function
remote_check_symbols is not used.  Checking the history, I find
function remote_check_symbols was added by this patch
<http://sourceware.org/ml/gdb-patches/2001-06/msg00262.html> and
parameter 'objfile' was not used either then.  I'll commit it in three
days if no comments or objections.

gdb:

2013-05-28  Yao Qi  <yao@codesourcery.com>

	* remote.c (remote_check_symbols): Remove unused parameter
	'objfile'.
	Declaration update.
	(remote_start_remote, remote_new_objfile): Caller update.
---
 gdb/remote.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gdb/remote.c b/gdb/remote.c
index 658fae2..10eacba 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -219,7 +219,7 @@ static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
   
 static void remote_query_supported (void);
 
-static void remote_check_symbols (struct objfile *objfile);
+static void remote_check_symbols (void);
 
 void _initialize_remote (void);
 
@@ -3577,7 +3577,7 @@ remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
   if (target_has_execution)
     {
       if (exec_bfd) 	/* No use without an exec file.  */
-	remote_check_symbols (symfile_objfile);
+	remote_check_symbols ();
     }
 
   /* Possibly the target has been engaged in a trace run started
@@ -3646,7 +3646,7 @@ init_all_packet_configs (void)
 /* Symbol look-up.  */
 
 static void
-remote_check_symbols (struct objfile *objfile)
+remote_check_symbols (void)
 {
   struct remote_state *rs = get_remote_state ();
   char *msg, *reply, *tmp;
@@ -11655,7 +11655,7 @@ static void
 remote_new_objfile (struct objfile *objfile)
 {
   if (remote_desc != 0)		/* Have a remote connection.  */
-    remote_check_symbols (objfile);
+    remote_check_symbols ();
 }
 
 /* Pull all the tracepoints defined on the target and create local
-- 
1.7.7.6



More information about the Gdb-patches mailing list