summaryrefslogtreecommitdiff
path: root/benchtests/Makefile
diff options
context:
space:
mode:
authorSteve Ellcey <sellcey@mips.com>2013-12-02 09:37:18 -0800
committerSteve Ellcey <sellcey@mips.com>2013-12-02 09:37:18 -0800
commitfe7da22091be6e4939531eeeef593b6d4539b55c (patch)
treee0b8a187ba869c3aa71cdb91f0a7b38aeb4cef84 /benchtests/Makefile
parent639a0ef8aba38b3ba1628d539fa95078132bca8a (diff)
Benchmark test for sqrt function.
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r--benchtests/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 0820d2060d..c1698c6c3f 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -21,7 +21,7 @@
subdir := benchtests
bench := acos acosh asin asinh atan atanh cos cosh exp log modf pow rint sin \
- sincos sinh tan tanh
+ sincos sinh sqrt tan tanh
# String function benchmarks.
string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
@@ -49,6 +49,7 @@ LDLIBS-bench-pow = -lm
LDLIBS-bench-rint = -lm
LDLIBS-bench-sin = -lm
LDLIBS-bench-sinh = -lm
+LDLIBS-bench-sqrt = -lm
LDLIBS-bench-tan = -lm
LDLIBS-bench-tanh = -lm
LDLIBS-bench-sincos = -lm