]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
benchtests/Makefile: Run benchmark for memcpy.
authorWill Newton <will.newton@linaro.org>
Wed, 4 Sep 2013 08:11:58 +0000 (09:11 +0100)
committerWill Newton <will.newton@linaro.org>
Fri, 6 Sep 2013 10:59:00 +0000 (11:59 +0100)
The benchmark for memcpy got disabled accidentally. Re-enable it.

ChangeLog:

2013-09-06   Will Newton  <will.newton@linaro.org>

* benchtests/Makefile (string-bench): Add memcpy.

ChangeLog
benchtests/Makefile

index 70de523509c2e2863379a85f264b6a0b1d644b76..d67993ad914e16cc8eb0aebbcb95fa1a1fc54ce5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-09-06   Will Newton  <will.newton@linaro.org>
+
+       * benchtests/Makefile (string-bench): Add memcpy.
+
 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
            Cong Wang  <amwang@redhat.com>
 
index 4d4b909bca02ece368bb01f45cc6dcb2b326269f..6037e5c4ff144fa91c5e57b52ac30c27fc10489e 100644 (file)
@@ -24,11 +24,11 @@ bench := acos acosh asin asinh atan atanh cos cosh exp log modf pow rint sin \
         sinh tan tanh
 
 # String function benchmarks.
-string-bench := bcopy bzero memccpy memchr memcmp memmem memmove mempcpy \
-               memset rawmemchr stpcpy stpncpy strcasecmp strcasestr strcat \
-               strchr strchrnul strcmp strcpy strcspn strlen strncasecmp \
-               strncat strncmp strncpy strnlen strpbrk strrchr strspn strstr \
-               strcpy_chk stpcpy_chk
+string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
+               mempcpy memset rawmemchr stpcpy stpncpy strcasecmp strcasestr \
+               strcat strchr strchrnul strcmp strcpy strcspn strlen \
+               strncasecmp strncat strncmp strncpy strnlen strpbrk strrchr \
+               strspn strstr strcpy_chk stpcpy_chk
 string-bench-ifunc := $(addsuffix -ifunc, $(string-bench))
 string-bench-all := $(string-bench) $(string-bench-ifunc)