about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Newton <will.newton@linaro.org>2013-09-04 09:11:58 +0100
committerWill Newton <will.newton@linaro.org>2013-09-06 11:59:00 +0100
commitbbf6e8e4f416ebb84b22b613752adb7cbc0d82df (patch)
treef9b845cd88f233a5c808bc5f6970f1246492a718
parent6c82a2f8d7c8e21e39237225c819f182ae438db3 (diff)
downloadglibc-bbf6e8e4f416ebb84b22b613752adb7cbc0d82df.tar.gz
glibc-bbf6e8e4f416ebb84b22b613752adb7cbc0d82df.tar.xz
glibc-bbf6e8e4f416ebb84b22b613752adb7cbc0d82df.zip
benchtests/Makefile: Run benchmark for memcpy.
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.
-rw-r--r--ChangeLog4
-rw-r--r--benchtests/Makefile10
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 70de523509..d67993ad91 100644
--- 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>
 
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 4d4b909bca..6037e5c4ff 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)