From 129a84735170296eb3efbbf9cc989ffb4ad43015 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 18 Jul 2025 09:24:30 +0930 Subject: [PATCH] visium: use RELOC_AGAINST_DISCARDED_SECTION The initial visium support added in commit d924db559be9 didn't make use of RELOC_AGAINST_DISCARDED_SECTION, and so lacked code to remove relocations in debug sections. --- bfd/elf32-visium.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/bfd/elf32-visium.c b/bfd/elf32-visium.c index 8e8fb75a575..cf367024cfb 100644 --- a/bfd/elf32-visium.c +++ b/bfd/elf32-visium.c @@ -615,17 +615,9 @@ visium_elf_relocate_section (bfd *output_bfd, } if (sec != NULL && discarded_section (sec)) - { - /* For relocs against symbols from removed linkonce sections, - or sections discarded by a linker script, we just want the - section contents zeroed. Avoid any special processing. */ - _bfd_clear_contents (howto, input_bfd, input_section, - contents, rel->r_offset); - - rel->r_info = 0; - rel->r_addend = 0; - continue; - } + RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section, + rel, 1, relend, R_VISIUM_NONE, + howto, 0, contents); if (bfd_link_relocatable (info)) continue; -- 2.47.2