mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 21:13:52 +08:00
Fix formatting in coff-x86_64.c
* coff-x86_64.c (coff_amd64_reloc): Fix formatting.
This commit is contained in:
parent
ec70be9f61
commit
c9f203207d
@ -1,3 +1,7 @@
|
||||
2015-12-18 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* coff-x86_64.c (coff_amd64_reloc): Fix formatting.
|
||||
|
||||
2015-12-18 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* coff-i386.c (coff_i386_reloc): Fix formatting.
|
||||
|
@ -147,7 +147,8 @@ coff_amd64_reloc (bfd *abfd,
|
||||
accurately range check any addresses computed against it.
|
||||
cf: PR binutils/17512: file: 1085-1761-0.004.
|
||||
For now we do the best that we can. */
|
||||
if (addr < (unsigned char *) data || addr > ((unsigned char *) data) + input_section->size)
|
||||
if (addr < (unsigned char *) data
|
||||
|| addr > ((unsigned char *) data) + input_section->size)
|
||||
{
|
||||
bfd_set_error (bfd_error_bad_value);
|
||||
return bfd_reloc_notsupported;
|
||||
@ -178,6 +179,7 @@ coff_amd64_reloc (bfd *abfd,
|
||||
bfd_put_32 (abfd, (bfd_vma) x, addr);
|
||||
}
|
||||
break;
|
||||
|
||||
case 4:
|
||||
{
|
||||
long long x = bfd_get_64 (abfd, addr);
|
||||
|
Loading…
Reference in New Issue
Block a user