mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 04:29:49 +00:00
* elfxx-ia64.c (elfNN_ia64_relax_section): Correct bounds
for ltoff22x relaxation.
This commit is contained in:
parent
4242fe84e5
commit
484a4f9ca6
@ -1,3 +1,8 @@
|
||||
2003-02-28 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* elfxx-ia64.c (elfNN_ia64_relax_section): Correct bounds
|
||||
for ltoff22x relaxation.
|
||||
|
||||
2003-03-01 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* bfd-in.h (_bfd): Don't define.
|
||||
|
@ -978,8 +978,8 @@ elfNN_ia64_relax_section (abfd, sec, link_info, again)
|
||||
}
|
||||
|
||||
/* If the data is out of range, do nothing. */
|
||||
if ((bfd_signed_vma) (symaddr - gp) >= 0x400000
|
||||
||(bfd_signed_vma) (symaddr - gp) < -0x400000)
|
||||
if ((bfd_signed_vma) (symaddr - gp) >= 0x200000
|
||||
||(bfd_signed_vma) (symaddr - gp) < -0x200000)
|
||||
continue;
|
||||
|
||||
if (r_type == R_IA64_LTOFF22X)
|
||||
|
Loading…
Reference in New Issue
Block a user