diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/ia64/Versions | 3 | ||||
-rw-r--r-- | sysdeps/ia64/elf/start.S | 5 |
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 7a44e52a82..8eb8601ba8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-10 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/ia64/Versions: Export + __libc_ia64_register_backing_store_base. + 2001-04-10 Andreas Schwab <schwab@suse.de> * math/libm-test.inc (csinh_test): Don't require the invalid diff --git a/sysdeps/ia64/Versions b/sysdeps/ia64/Versions index 1e1387f9d4..0eccce3901 100644 --- a/sysdeps/ia64/Versions +++ b/sysdeps/ia64/Versions @@ -4,4 +4,7 @@ ld { _dl_symbol_address; _dl_unmap; _dl_lookup_address; _dl_function_address; } + GLIBC_2.2.3 { + __libc_ia64_register_backing_store_base; + } } diff --git a/sysdeps/ia64/elf/start.S b/sysdeps/ia64/elf/start.S index cc8b798b37..27a7a1df36 100644 --- a/sysdeps/ia64/elf/start.S +++ b/sysdeps/ia64/elf/start.S @@ -97,7 +97,4 @@ __data_start: .weak data_start data_start = __data_start - .global __libc_ia64_register_backing_store_base - .align 8 -__libc_ia64_register_backing_store_base: - .space 8 + .common __libc_ia64_register_backing_store_base, 8, 8 |