This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] benchtests/Makefile: Run benchmark for memcpy.
- From: Will Newton <will dot newton at linaro dot org>
- To: libc-alpha at sourceware dot org
- Cc: patches at linaro dot org
- Date: Wed, 04 Sep 2013 15:47:12 +0100
- Subject: [PATCH] benchtests/Makefile: Run benchmark for memcpy.
- Authentication-results: sourceware.org; auth=none
The benchmark for memcpy got disabled accidentally. Re-enable it.
ChangeLog:
2013-09-03 Will Newton <will.newton@linaro.org>
* benchtests/Makefile (string-bench): Add memcpy.
---
benchtests/Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 4d4b909..6037e5c 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -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)
--
1.8.1.4