diff mbox

benchtests/Makefile: Run benchmark for memcpy.

Message ID 522747F0.50603@linaro.org
State Accepted
Headers show

Commit Message

Will Newton Sept. 4, 2013, 2:47 p.m. UTC
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(-)

Comments

Siddhesh Poyarekar Sept. 4, 2013, 2:49 p.m. UTC | #1
On 4 September 2013 20:17, Will Newton <will.newton@linaro.org> wrote:
>
> 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.

Looks OK.

Siddhesh
diff mbox

Patch

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)