2004-04-22 Philip Blundell * sysdeps/arm/dl-machine.h (elf_machine_rela): Don't use INTUSE when calling _dl_signal_error. (elf_machine_rel): Likewise. Index: sysdeps/arm/dl-machine.h =================================================================== RCS file: /cvs/glibc/libc/sysdeps/arm/dl-machine.h,v retrieving revision 1.46 diff -u -r1.46 dl-machine.h --- sysdeps/arm/dl-machine.h 5 Mar 2004 10:21:30 -0000 1.46 +++ sysdeps/arm/dl-machine.h 22 Apr 2004 06:39:24 -0000 @@ -507,9 +505,8 @@ 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 +585,8 @@ 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;