diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-11 13:58:16 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-11 13:58:16 -0700 |
commit | 9a387d1f787f764474943294024b02258f14e80a (patch) | |
tree | 3159228b99a2195dd1347a673a08efefce787ad3 /ChangeLog | |
parent | 54a417345edca0015e70e8b360b7f83ade5a7507 (diff) | |
download | glibc-9a387d1f787f764474943294024b02258f14e80a.tar.gz glibc-9a387d1f787f764474943294024b02258f14e80a.tar.xz glibc-9a387d1f787f764474943294024b02258f14e80a.zip |
Use IFUNC memmove/memset in x86-64 bcopy/bzero
Also add separate tests for bcopy and bzero.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index e093b8f8f7..0e6d588055 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2012-10-11 H.J. Lu <hongjiu.lu@intel.com> + + * string/Makefile (strop-tests): Add bcopy and bzero. + * string/test-bcopy.c: New file. + * string/test-bzero.c: Likewise. + * string/test-memmove.c: Support bcopy test if TEST_BCOPY is + defined. + * string/test-memset.c: Support bzero test if TEST_BZERO is + defined. + * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to + __libc_memmove. + * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to + __libc_memset. + * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias + of memset. + 2012-10-10 Joseph Myers <joseph@codesourcery.com> * configure.in: Run $CXX, not cc1plus, to locate C++ headers. |