diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-05-03 22:40:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-05-03 22:40:52 +0000 |
commit | 27b0258934adb212b760ead998d51f8005224abc (patch) | |
tree | 227015d0044b530f0bdf169f2088f956ef28fcaa /include | |
parent | 4bb8fc33018de0b3519b1069fa87d670f71249dc (diff) |
Update.
2004-04-23 Jakub Jelinek <jakub@redhat.com>
* sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Add
libc_hidden_proto. Define to __GI___libm_error_support for
assembly going into libc.so.
* sysdeps/ia64/fpu/libc_libm_error.c (__libm_error_support): Add
libc_hidden_def.
* include/libc-symbols.h (HIDDEN_BUILTIN_JUMPTARGET): Define.
* sysdeps/ia64/bcopy.S (bcopy): Use it for jump to memmove.
* sysdeps/unix/sysv/linux/ia64/sysdep.S (__syscall_error): Access
gprel errno if RTLD_PRIVATE_ERRNO or __thread __libc_errno/errno
if USE___THREAD.
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-symbols.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index e7074a6064..9cc72b261a 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -749,11 +749,17 @@ for linking") # define libc_hidden_builtin_def(name) libc_hidden_def (name) # define libc_hidden_builtin_weak(name) libc_hidden_weak (name) # define libc_hidden_builtin_ver(local, name) libc_hidden_ver (local, name) +# ifdef __ASSEMBLER__ +# define HIDDEN_BUILTIN_JUMPTARGET(name) HIDDEN_JUMPTARGET(name) +# endif #else # define libc_hidden_builtin_proto(name, attrs...) # define libc_hidden_builtin_def(name) # define libc_hidden_builtin_weak(name) # define libc_hidden_builtin_ver(local, name) +# ifdef __ASSEMBLER__ +# define HIDDEN_BUILTIN_JUMPTARGET(name) JUMPTARGET(name) +# endif #endif /* Get some dirty hacks. */ |