diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-12-12 18:03:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-12-12 18:03:27 +0000 |
commit | a78814a99acf70c9ccc967417a082cc8117586b4 (patch) | |
tree | affdc394b42b27092f6ebe3efe1e2b767b6d3530 /sysdeps/i386/i486 | |
parent | 58d1179512a439514003b25b59eff7486a03fe0c (diff) | |
download | glibc-a78814a99acf70c9ccc967417a082cc8117586b4.zip glibc-a78814a99acf70c9ccc967417a082cc8117586b4.tar.gz glibc-a78814a99acf70c9ccc967417a082cc8117586b4.tar.bz2 |
[BZ #5477]
2007-12-12 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
(memmove): Rename to __memmove_g, with __asm__ ("memmove").
* sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
__strcat_g, __strncat_g): Add __asm__.
2007-12-12 Ulrich Drepper <drepper@redhat.com>
[BZ #5477]
* io/fchmodat.c: Fix typo in stub_warning use.
Patch by Petr Salinger.
Diffstat (limited to 'sysdeps/i386/i486')
-rw-r--r-- | sysdeps/i386/i486/bits/string.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/i386/i486/bits/string.h b/sysdeps/i386/i486/bits/string.h index cf5f484..9f05c7e 100644 --- a/sysdeps/i386/i486/bits/string.h +++ b/sysdeps/i386/i486/bits/string.h @@ -145,8 +145,13 @@ __memcpy_g (void *__dest, __const void *__src, size_t __n) #ifndef _FORCE_INLINES /* Copy N bytes of SRC to DEST, guaranteeing correct behavior for overlapping strings. */ +#define memmove(dest, src, n) __memmove_g (dest, src, n) + +__STRING_INLINE void *__memmove_g (void *, __const void *, size_t) + __asm__ ("memmove"); + __STRING_INLINE void * -memmove (void *__dest, __const void *__src, size_t __n) +__memmove_g (void *__dest, __const void *__src, size_t __n) { register unsigned long int __d0, __d1, __d2; register void *__tmp = __dest; |