From 0700ae06d4ec861d9d7bfe94e7c5d6b0bf1ea2ee Mon Sep 17 00:00:00 2001 From: dj Date: Fri, 26 Jan 2007 00:00:44 +0000 Subject: [PATCH] * elf32-m32c.c (m32c_elf_howto_table): Don't complain about R_M32C_16 or R_M32C_24 relocs. --- bfd/ChangeLog | 5 +++++ bfd/elf32-m32c.c | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 33fcec6ac4..c2aa8033c0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2007-01-25 DJ Delorie + + * elf32-m32c.c (m32c_elf_howto_table): Don't complain about + R_M32C_16 or R_M32C_24 relocs. + 2007-01-25 Nick Clifton PR binutils/3874 diff --git a/bfd/elf32-m32c.c b/bfd/elf32-m32c.c index 50538c9e08..492c5bc8e8 100644 --- a/bfd/elf32-m32c.c +++ b/bfd/elf32-m32c.c @@ -60,13 +60,16 @@ static reloc_howto_type m32c_elf_howto_table [] = 0, /* dst_mask */ FALSE), /* pcrel_offset */ + /* GCC intentionally overflows these next two in order to work + around limitations in the addressing modes, so don't complain + about overflow. */ HOWTO (R_M32C_16, /* type */ 0, /* rightshift */ 1, /* size (0 = byte, 1 = short, 2 = long) */ 16, /* bitsize */ FALSE, /* pc_relative */ 0, /* bitpos */ - complain_overflow_bitfield, /* complain_on_overflow */ + complain_overflow_dont, /* complain_on_overflow */ bfd_elf_generic_reloc, /* special_function */ "R_M32C_16", /* name */ FALSE, /* partial_inplace */ @@ -80,7 +83,7 @@ static reloc_howto_type m32c_elf_howto_table [] = 24, /* bitsize */ FALSE, /* pc_relative */ 0, /* bitpos */ - complain_overflow_bitfield, /* complain_on_overflow */ + complain_overflow_dont, /* complain_on_overflow */ bfd_elf_generic_reloc, /* special_function */ "R_M32C_24", /* name */ FALSE, /* partial_inplace */ -- 2.11.0