This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] dbxread.c, discard unused value.


Checked in.

2011-02-28  Michael Snyder  <msnyder@vmware.com>

	* dbxread.c (process_one_symbol): Discard unused value.

Index: dbxread.c
===================================================================
RCS file: /cvs/src/src/gdb/dbxread.c,v
retrieving revision 1.121
diff -u -p -u -p -r1.121 dbxread.c
--- dbxread.c	26 Feb 2011 02:07:07 -0000	1.121
+++ dbxread.c	28 Feb 2011 23:21:24 -0000
@@ -2853,7 +2853,7 @@ process_one_symbol (int type, int desc, 
 	   N_SO, the linker did not relocate them (sigh).  */
 	valu += last_source_start_addr;
 
-      new = push_context (desc, valu);
+      push_context (desc, valu);
       break;
 
     case N_RBRAC:

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]