diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-05 18:24:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-05 18:24:09 +0000 |
commit | 4661a1534390784e32ce940ad05ebb8ea9cdb62d (patch) | |
tree | 386c3329673ecb68f5b957f708bdd3504df76b6e /sysdeps/s390/fpu | |
parent | b2e2aa373936c76e1c5cf119d35b48ae64f9fbec (diff) | |
download | glibc-4661a1534390784e32ce940ad05ebb8ea9cdb62d.tar.gz glibc-4661a1534390784e32ce940ad05ebb8ea9cdb62d.tar.xz glibc-4661a1534390784e32ce940ad05ebb8ea9cdb62d.zip |
Update.
2003-05-05 Jakub Jelinek <jakub@redhat.com> * sysdeps/ia64/bits/atomic.h (__arch_compare_and_exchange_val_8_acq, __arch_compare_and_exchange_val_16_acq): Cast 0 to mem's type. * sysdeps/powerpc/powerpc32/bits/atomic.h (__arch_compare_and_exchange_val_64_acq): Likewise. * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__arch_compare_and_exchange_val_8_acq, __arch_compare_and_exchange_val_16_acq, __arch_compare_and_exchange_val_64_acq): Likewise. * sysdeps/sparc/sparc64/bits/atomic.h (__arch_compare_and_exchange_val_8_acq, __arch_compare_and_exchange_val_16_acq): Likewise. * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_8_acq, __arch_compare_and_exchange_val_16_acq, __arch_compare_and_exchange_val_64_acq): Likewise. * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__arch_compare_and_exchange_val_64_acq): Likewise. * sysdeps/s390/s390-64/backtrace.c (__backtrace): Add cast to shut up warning. * sysdeps/s390/fpu/fegetenv.c (fegetenv): Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (INLINE_SYSCALL, INTERNAL_SYSCALL_DIRECT, INTERNAL_SYSCALL_SVC0): Return long instead of int. (INTERNAL_SYSCALL_ERROR_P): Cast val to unsigned long, replace 0xfffff001u with -4095UL.
Diffstat (limited to 'sysdeps/s390/fpu')
-rw-r--r-- | sysdeps/s390/fpu/fegetenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/s390/fpu/fegetenv.c b/sysdeps/s390/fpu/fegetenv.c index 438526aa95..b35a76a4e8 100644 --- a/sysdeps/s390/fpu/fegetenv.c +++ b/sysdeps/s390/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). @@ -36,7 +36,7 @@ fegetenv (fenv_t *envp) no way to find out the ieee instruction pointer if there was no fault. */ _FPU_GETCW (envp->fpc); envp->ieee_instruction_pointer = - ptrace (PTRACE_PEEKUSER, getpid (), PT_IEEE_IP); + (void *) ptrace (PTRACE_PEEKUSER, getpid (), PT_IEEE_IP); /* Success. */ return 0; |