diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-12 09:31:53 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-12 09:31:53 +0530 |
commit | 19b5525e525601bf5cc0279c6950e79157c670b1 (patch) | |
tree | 7956a948bd7f26e4d8802fb4f918b5363bc5bb61 /benchtests/Makefile | |
parent | dc14d999e14eb2526fdc12280e8b623789e29f93 (diff) | |
download | glibc-19b5525e525601bf5cc0279c6950e79157c670b1.zip glibc-19b5525e525601bf5cc0279c6950e79157c670b1.tar.gz glibc-19b5525e525601bf5cc0279c6950e79157c670b1.tar.bz2 |
benchmark inputs for exp2, log2, log and tan
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index c1698c6..eea384d 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -20,8 +20,8 @@ # Add benchmark functions in alphabetical order. subdir := benchtests -bench := acos acosh asin asinh atan atanh cos cosh exp log modf pow rint sin \ - sincos sinh sqrt tan tanh +bench := acos acosh asin asinh atan atanh cos cosh exp exp2 log log2 modf pow \ + rint sin sincos sinh sqrt tan tanh # String function benchmarks. string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \ @@ -44,7 +44,9 @@ LDLIBS-bench-atanh = -lm LDLIBS-bench-cos = -lm LDLIBS-bench-cosh = -lm LDLIBS-bench-exp = -lm +LDLIBS-bench-exp2 = -lm LDLIBS-bench-log = -lm +LDLIBS-bench-log2 = -lm LDLIBS-bench-pow = -lm LDLIBS-bench-rint = -lm LDLIBS-bench-sin = -lm |