From: James Bowman Date: Thu, 31 Aug 2017 02:44:58 +0000 (-0700) Subject: FT32: Permit R_FT32_18 overflow X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ef32532f22be7e98c25480449fbc7a80d1030e1e;hp=ef32532f22be7e98c25480449fbc7a80d1030e1e;p=deliverable%2Fbinutils-gdb.git FT32: Permit R_FT32_18 overflow The howto for R_FT32_18 was using complain_overflow_signed. But some valid address calculations exceed the range of this reloc. Changing it to complain_overflow_dont allows them. bfd/ChangeLog: * elf32-ft32.c (ft32_elf_howto_table): Use complain_overflow_dont for R_FT32_18. ---