This is the mail archive of the gdb-cvs@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]

[binutils-gdb] fix up two issues with the removal of unused variables


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=df140a0bc3140bca133cd7ced6e18903db69c396

commit df140a0bc3140bca133cd7ced6e18903db69c396
Author: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
Date:   Tue May 10 21:33:45 2016 -0400

    fix up two issues with the removal of unused variables
    
    gdb/ChangeLog:
    
    2016-05-10  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
    
    	* iq2000-tdep.c (iq2000_scan_prologue): Remove if that shouldn't guard
    	anything.
    	* linespec.c (add_sal_to_sals): Restore call to symtab_to_fullname.

Diff:
---
 gdb/ChangeLog     | 6 ++++++
 gdb/iq2000-tdep.c | 1 -
 gdb/linespec.c    | 2 ++
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 519c6d1..9d652d7 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2016-05-10  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
+
+	* iq2000-tdep.c (iq2000_scan_prologue): Remove if that shouldn't guard
+	anything.
+	* linespec.c (add_sal_to_sals): Restore call to symtab_to_fullname.
+
 2016-05-10  Thomas Preud'homme  <thomas.preudhomme@arm.com>
 
 	* arm-tdep.c (arm_elf_make_msymbol_special): Use
diff --git a/gdb/iq2000-tdep.c b/gdb/iq2000-tdep.c
index 14d2afe..600d70a 100644
--- a/gdb/iq2000-tdep.c
+++ b/gdb/iq2000-tdep.c
@@ -248,7 +248,6 @@ iq2000_scan_prologue (struct gdbarch *gdbarch,
 	  if (tgtreg >= 0 && tgtreg < E_NUM_REGS)
 	    cache->saved_regs[tgtreg] = -((signed short) (insn & 0xffff));
 
-	  if (tgtreg == E_LR_REGNUM)
 	  continue;
 	}
 
diff --git a/gdb/linespec.c b/gdb/linespec.c
index c0c3b3b3..7162163 100644
--- a/gdb/linespec.c
+++ b/gdb/linespec.c
@@ -845,6 +845,8 @@ add_sal_to_sals (struct linespec_state *self,
       canonical = &self->canonical_names[sals->nelts - 1];
       if (!literal_canonical && sal->symtab)
 	{
+	  symtab_to_fullname (sal->symtab);
+
 	  /* Note that the filter doesn't have to be a valid linespec
 	     input.  We only apply the ":LINE" treatment to Ada for
 	     the time being.  */


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