diff --git a/sysdeps/arm/dl-machine.h b/sysdeps/arm/dl-machine.h index 9905d15001..e3e666a42f 100644 --- a/sysdeps/arm/dl-machine.h +++ b/sysdeps/arm/dl-machine.h @@ -523,8 +523,9 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc, topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - _dl_signal_error (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + INTUSE (_dl_signal_error) + (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2; @@ -577,8 +578,9 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc, topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - _dl_signal_error (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + INTUSE (_dl_signal_error) + (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2; diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index 7dbdd794cf..08e5a6e562 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -238,7 +238,7 @@ elf_machine_runtime_link_map (ElfW(Addr) gpreg, ElfW(Addr) stub_pc) } } - _dl_signal_error (0, NULL, NULL, "cannot find runtime link map"); + INTUSE (_dl_signal_error) (0, NULL, NULL, "cannot find runtime link map"); return NULL; }