diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-02-06 16:52:45 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-04-17 16:12:41 -0300 |
commit | b80b3618dc7c3da40c530ef0bbdcde139fc7b4a1 (patch) | |
tree | 9e081f2279db1048133e910c4dd929635378f380 | |
parent | 6677c619032b1b284e40ca752c0338e8f10b6d94 (diff) | |
download | glibc-b80b3618dc7c3da40c530ef0bbdcde139fc7b4a1.tar.gz glibc-b80b3618dc7c3da40c530ef0bbdcde139fc7b4a1.tar.xz glibc-b80b3618dc7c3da40c530ef0bbdcde139fc7b4a1.zip |
bench-malloc-thread: Add libm for powf
The bench-malloc-thread.c:63 does use powf and compiler might not optimzie it away.
-rw-r--r-- | benchtests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 05b8751c55..04a57b2873 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -318,6 +318,7 @@ $(addprefix $(objpfx)bench-,$(bench-pthread)): $(thread-library-benchtests) $(addprefix $(objpfx)bench-,$(bench-malloc)): $(thread-library-benchtests) $(addprefix $(objpfx)bench-,pthread-locks): $(libm-benchtests) $(addprefix $(objpfx)bench-,pthread-mutex-locks): $(libm-benchtests) +$(addprefix $(objpfx)bench-,malloc-thread): $(libm-benchtests) |