Add aix 64-bit check to bfd_get_sign_extend_vma

* bfd.c (bfd_get_sign_extend_vma): Handle aix5coff64-rs6000.
This commit is contained in:
Sangamesh Mallayya 2017-12-08 13:47:17 +10:30 committed by Alan Modra
parent 63a22aee30
commit c8bed57010
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2017-12-08 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
* bfd.c (bfd_get_sign_extend_vma): Handle aix5coff64-rs6000.
2017-12-06 Alan Modra <amodra@gmail.com>
* doc/header.sed: Trim trailing space when splitting lines.

View File

@ -1533,7 +1533,8 @@ bfd_get_sign_extend_vma (bfd *abfd)
|| strcmp (name, "pei-x86-64") == 0
|| strcmp (name, "pe-arm-wince-little") == 0
|| strcmp (name, "pei-arm-wince-little") == 0
|| strcmp (name, "aixcoff-rs6000") == 0)
|| strcmp (name, "aixcoff-rs6000") == 0
|| strcmp (name, "aixcoff64-rs6000") == 0)
return 1;
if (CONST_STRNEQ (name, "mach-o"))