Skip to content

Commit

Permalink
benchtests/Makefile: Run benchmark for memcpy.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Will Newton committed Sep 6, 2013
1 parent 6c82a2f commit bbf6e8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

Expand Down
10 changes: 5 additions & 5 deletions benchtests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit bbf6e8e

Please sign in to comment.