Fix compilation warning building BFD library for ARM using gcc v9.
authorNick Clifton <nickc@redhat.com>
Mon, 28 Jan 2019 17:09:41 +0000 (17:09 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 28 Jan 2019 17:09:41 +0000 (17:09 +0000)
* elf32-arm.c (elf32_arm_final_link_relocate): Use 'llabs' instead
of 'labs' (and fix GCC warning).

bfd/ChangeLog
bfd/elf32-arm.c

index 6c6ffbc..039ded2 100644 (file)
@@ -1,3 +1,11 @@
+2019-01-28  Nick Clifton  <nickc@redhat.com>
+
+       Import from mainline:
+       2019-01-21  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+       * elf32-arm.c (elf32_arm_final_link_relocate): Use 'llabs' instead
+       of 'labs' (and fix GCC warning).
+
 2019-01-25  Nick Clifton  <nickc@redhat.com>
 
        * po/ru.po: Updated Russian translation.
index 53baea2..28ee9d5 100644 (file)
@@ -10904,7 +10904,7 @@ elf32_arm_final_link_relocate (reloc_howto_type *           howto,
 
        /* PR 21523: Use an absolute value.  The user of this reloc will
           have already selected an ADD or SUB insn appropriately.  */
-       value = labs (relocation);
+       value = llabs (relocation);
 
        if (value >= 0x1000)
          return bfd_reloc_overflow;