mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 05:50:43 +00:00
2010-06-10 Tristan Gingold <gingold@adacore.com>
* readelf.c (slurp_ia64_unwind_table): IA64 rela relocations are not inplace.
This commit is contained in:
parent
cb3aabc79c
commit
e466bc6e48
@ -1,3 +1,8 @@
|
||||
2010-06-10 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* readelf.c (slurp_ia64_unwind_table): IA64 rela relocations are
|
||||
not inplace.
|
||||
|
||||
2010-05-25 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
Andrew Stubbs <ams@codesourcery.com>
|
||||
|
@ -5435,15 +5435,15 @@ slurp_ia64_unwind_table (FILE * file,
|
||||
{
|
||||
case 0:
|
||||
aux->table[i].start.section = sym->st_shndx;
|
||||
aux->table[i].start.offset += rp->r_addend + sym->st_value;
|
||||
aux->table[i].start.offset = rp->r_addend + sym->st_value;
|
||||
break;
|
||||
case 1:
|
||||
aux->table[i].end.section = sym->st_shndx;
|
||||
aux->table[i].end.offset += rp->r_addend + sym->st_value;
|
||||
aux->table[i].end.offset = rp->r_addend + sym->st_value;
|
||||
break;
|
||||
case 2:
|
||||
aux->table[i].info.section = sym->st_shndx;
|
||||
aux->table[i].info.offset += rp->r_addend + sym->st_value;
|
||||
aux->table[i].info.offset = rp->r_addend + sym->st_value;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user