From: Arnold Metselaar Date: Mon, 29 Dec 2008 17:06:46 +0000 (+0000) Subject: Fix copy-paste bug that caused z80-objdump to issue warnings about stabs debugging... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96d4e9de53b12d2a59d1c713f469c4df74e5cadb;p=binutils-gdb.git Fix copy-paste bug that caused z80-objdump to issue warnings about stabs debugging symbols rather than to show them. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b989a72f5ab..eb63e09f5dc 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2008-12-29 Arnold Metselaar + + * coff-z80.c (r_imm32): Fix copy-paste bug that caused z80-objdump to + issue warnings about stabs debugging symbols rather than to show them. + 2008-12-23 Jon Beniston * Makefile.am: Add LM32 object files and dependencies. diff --git a/bfd/coff-z80.c b/bfd/coff-z80.c index 7e546063048..c14c664b715 100644 --- a/bfd/coff-z80.c +++ b/bfd/coff-z80.c @@ -30,7 +30,7 @@ #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER 0 static reloc_howto_type r_imm32 = -HOWTO (R_IMM32, 0, 1, 32, FALSE, 0, +HOWTO (R_IMM32, 0, 2, 32, FALSE, 0, complain_overflow_dont, 0, "r_imm32", TRUE, 0xffffffff, 0xffffffff, FALSE);