diff options
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 2aad3c2..f5d6dac 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -24,7 +24,8 @@ subdir := benchtests include ../Makeconfig 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 + modf pow rint sin sincos sinh sqrt tan tanh fmin fmax fminf \ + fmaxf bench-pthread := pthread_once @@ -74,7 +75,9 @@ CFLAGS-bench-ffs.c += -fno-builtin CFLAGS-bench-ffsll.c += -fno-builtin CFLAGS-bench-sqrt.c += -fno-builtin CFLAGS-bench-fmin.c += -fno-builtin +CFLAGS-bench-fminf.c += -fno-builtin CFLAGS-bench-fmax.c += -fno-builtin +CFLAGS-bench-fmaxf.c += -fno-builtin bench-malloc := malloc-thread |