diff options
author | Will Newton <will.newton@linaro.org> | 2014-03-28 17:30:44 +0000 |
---|---|---|
committer | Will Newton <will.newton@linaro.org> | 2014-03-31 12:50:41 +0100 |
commit | c760f5c210d85247ef0c6e10f7ef44fa27d9bd1d (patch) | |
tree | 4e597b715569d3614862e8cc20dfd4a865c520e9 /benchtests/Makefile | |
parent | 97d8ca99ae96f23504482eb98499653996e4f66b (diff) | |
download | glibc-c760f5c210d85247ef0c6e10f7ef44fa27d9bd1d.tar glibc-c760f5c210d85247ef0c6e10f7ef44fa27d9bd1d.tar.gz glibc-c760f5c210d85247ef0c6e10f7ef44fa27d9bd1d.tar.bz2 glibc-c760f5c210d85247ef0c6e10f7ef44fa27d9bd1d.zip |
benchtests: Add benchtests for ffs and ffsll
Add benchtests for ffs and ffsll. There is no benchtest for ffsl as
it is identical to one of the other functions.
2014-03-31 Will Newton <will.newton@linaro.org>
* benchtests/Makefile (bench): Add ffs and ffsll to list
of tests.
* benchtests/ffs-inputs: New file.
* benchtests/ffsll-inputs: Likewise.
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index f5488c1339..b184461ffd 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -22,9 +22,8 @@ subdir := benchtests include ../Makeconfig - -bench := acos acosh asin asinh atan atanh cos cosh exp exp2 log log2 modf pow \ - rint sin sincos sinh sqrt tan tanh +bench := acos acosh asin asinh atan atanh cos cosh exp exp2 ffs ffsll \ + log log2 modf pow rint sin sincos sinh sqrt tan tanh # String function benchmarks. string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \ |