mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-13 11:20:55 +08: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:
@ -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>
|
2010-05-25 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
Joseph Myers <joseph@codesourcery.com>
|
Joseph Myers <joseph@codesourcery.com>
|
||||||
Andrew Stubbs <ams@codesourcery.com>
|
Andrew Stubbs <ams@codesourcery.com>
|
||||||
|
@ -5435,15 +5435,15 @@ slurp_ia64_unwind_table (FILE * file,
|
|||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
aux->table[i].start.section = sym->st_shndx;
|
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;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
aux->table[i].end.section = sym->st_shndx;
|
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;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
aux->table[i].info.section = sym->st_shndx;
|
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;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user