diff options
author | Raphael Moreira Zinsly <rzinsly@linux.ibm.com> | 2020-12-03 10:41:02 -0300 |
---|---|---|
committer | Raphael Moreira Zinsly <rzinsly@linux.ibm.com> | 2021-03-16 12:19:09 -0300 |
commit | 6cf19111222800a9e98f30392b6649c42b315829 (patch) | |
tree | c0f829a8ee6e246c164a62add80c5a40de9fea28 /benchtests/Makefile | |
parent | a7d88506c260e7a0e4268803e76fc19e38ed041f (diff) | |
download | glibc-6cf19111222800a9e98f30392b6649c42b315829.zip glibc-6cf19111222800a9e98f30392b6649c42b315829.tar.gz glibc-6cf19111222800a9e98f30392b6649c42b315829.tar.bz2 |
benchtests: Add ilogb* tests
Add a benchtest to ilogb, ilogbf and ilogbf128 based on the logb* benchtests.
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 12bd25a..0c99547 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -25,10 +25,10 @@ bench-math := acos acosh asin asinh atan atanh cos cosh exp exp2 log log2 \ modf pow rint sin sincos sinh sqrt tan tanh fmin fmax fminf \ fmaxf powf trunc truncf roundeven roundevenf expf exp2f logf \ log2f sincosf sinf cosf isnan isinf isfinite hypot logb logbf \ - exp10f + exp10f ilogb ilogbf ifneq (,$(filter yes,$(float128-fcts) $(float128-alias-fcts))) -bench-math += expf128 powf128 sinf128 +bench-math += expf128 powf128 sinf128 ilogbf128 endif bench-pthread := pthread_once thread_create pthread-locks |