diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-01 20:46:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-01 20:46:53 +0000 |
commit | c88fccbef1a9046476ba7882c6240e372d52cd03 (patch) | |
tree | f591b70b8ea5436fc417cd652831e525a2f7498c | |
parent | c877418f2e806a5d2a07c036bb4ac192a53ccdbf (diff) | |
download | glibc-c88fccbef1a9046476ba7882c6240e372d52cd03.tar.gz glibc-c88fccbef1a9046476ba7882c6240e372d52cd03.tar.xz glibc-c88fccbef1a9046476ba7882c6240e372d52cd03.zip |
* sysdeps/ia64/strncpy.S: Fix recovery code.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/ia64/strncpy.S | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 8226c644e2..afb30a7a3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-11-01 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/ia64/strncpy.S: Fix recovery code. + 2002-10-30 Jakub Jelinek <jakub@redhat.com> * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn): diff --git a/sysdeps/ia64/strncpy.S b/sysdeps/ia64/strncpy.S index 202741f980..a285f90bfc 100644 --- a/sysdeps/ia64/strncpy.S +++ b/sysdeps/ia64/strncpy.S @@ -217,11 +217,11 @@ ENTRY(strncpy) (p5) mov r[0] = r0 br.cond.sptk .back2 .recovery3: - add tmp = -MEMLAT * 8, src ;; + add tmp = -(MEMLAT + 1) * 8, src ;; ld8 r[MEMLAT] = [tmp] br.cond.sptk .back3 .recovery4: - add tmp = -(MEMLAT - 1) * 8, src ;; + add tmp = -MEMLAT * 8, src ;; ld8 r[MEMLAT - 1] = [tmp] br.cond.sptk .back4 END(strncpy) |