aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/arm/dl-machine.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-04-22 07:31:18 +0000
committerUlrich Drepper <drepper@redhat.com>2004-04-22 07:31:18 +0000
commit091e1f6a1b47232375494f47a6b4d0e5ddea81f9 (patch)
treef153c6874d87b4317569981325a82f8640123ffd /sysdeps/arm/dl-machine.h
parentab8dc78f717d875a18d24719f35e1d21d69aa2c9 (diff)
downloadglibc-091e1f6a1b47232375494f47a6b4d0e5ddea81f9.tar
glibc-091e1f6a1b47232375494f47a6b4d0e5ddea81f9.tar.gz
glibc-091e1f6a1b47232375494f47a6b4d0e5ddea81f9.tar.bz2
glibc-091e1f6a1b47232375494f47a6b4d0e5ddea81f9.zip
Update.
2004-04-22 Philip Blundell <philb@gnu.org> * sysdeps/arm/dl-machine.h (elf_machine_rela): Don't use INTUSE when calling _dl_signal_error. (elf_machine_rel): Likewise.
Diffstat (limited to 'sysdeps/arm/dl-machine.h')
-rw-r--r--sysdeps/arm/dl-machine.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/arm/dl-machine.h b/sysdeps/arm/dl-machine.h
index 25a8515dac..a131676d5a 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;