mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* readelf.c (slurp_hppa_unwind_table): Don't relocate address twice.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2009-11-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
* readelf.c (slurp_hppa_unwind_table): Don't relocate address twice.
|
||||
|
||||
2009-11-05 Kai Tietz <kai.tietz@onevision.com>
|
||||
|
||||
* dllwrap.c (is_leading_underscore): New variable.
|
||||
|
||||
@@ -5589,11 +5589,11 @@ slurp_hppa_unwind_table (FILE * file,
|
||||
{
|
||||
case 0:
|
||||
aux->table[i].start.section = sym->st_shndx;
|
||||
aux->table[i].start.offset += sym->st_value + rp->r_addend;
|
||||
aux->table[i].start.offset = sym->st_value + rp->r_addend;
|
||||
break;
|
||||
case 1:
|
||||
aux->table[i].end.section = sym->st_shndx;
|
||||
aux->table[i].end.offset += sym->st_value + rp->r_addend;
|
||||
aux->table[i].end.offset = sym->st_value + rp->r_addend;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user