]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2002-09-28 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Sat, 28 Sep 2002 19:45:29 +0000 (19:45 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 28 Sep 2002 19:45:29 +0000 (19:45 +0000)
* sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Use INTUSE for
_dl_signal_error.
* sysdeps/mips/dl-machine.h (elf_machine_runtime_link_map): Likewise.
* sysdeps/powerpc/powerpc64/dl-machine.c
(_dl_reloc_overflow): Likewise.
* sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_rela): Likewise.

sysdeps/arm/dl-machine.h
sysdeps/mips/dl-machine.h

index 9905d15001cf78533fb92651ab44253528964df6..e3e666a42ffab42e3f2c1949149c38a167835951 100644 (file)
@@ -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;
index 7dbdd794cf17e5099ff35048c10ebb8b86ec7423..08e5a6e562c73e32276ce5b973c06fd43adf245d 100644 (file)
@@ -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;
 }