From: Ulrich Drepper Date: Thu, 22 Apr 2004 07:31:08 +0000 (+0000) Subject: (elf_machine_rela): Don't use INTUSE when calling _dl_signal_error. X-Git-Tag: upstream/2.30~10627^2~1182 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88aa65dae8eec5f3570763941548d8a87cffddd2;p=external%2Fglibc.git (elf_machine_rela): Don't use INTUSE when calling _dl_signal_error. (elf_machine_rel): Likewise. --- diff --git a/sysdeps/arm/dl-machine.h b/sysdeps/arm/dl-machine.h index 25a8515..a131676 100644 --- a/sysdeps/arm/dl-machine.h +++ b/sysdeps/arm/dl-machine.h @@ -507,9 +507,8 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc, topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - INTUSE (_dl_signal_error) - (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + _dl_signal_error (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2; @@ -588,9 +587,8 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc, topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - INTUSE (_dl_signal_error) - (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + _dl_signal_error (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2;