From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 315A83858417; Fri, 9 Feb 2024 17:39:48 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 315A83858417 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707500388; bh=kUGUPwDk12cvq0DochDMBP+n+crscEl3WlFaI0WYllA=; h=From:To:Subject:Date:From; b=iGzvSVlzmUbcNAzFzKnEI9YwvK6OM9eE/KNtdFbMD8Rv3kH3km+CbxlxBcLiT8laV 4lRkBmqwOyuHUUkiwgnHM3nV2TG65Fmkc4ATw4iWU4yiHG9zDXQG/H6KsPPXYAMqep 534I9B3q+4YDAoKClrb9QuJvdByf5vVCWqOAATYc= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] bench-malloc-thread: Add libm for powf X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 79a99d11da2083e551ae6fc28f692d08344069c6 X-Git-Newrev: c93082545716dac16b9c408e6069f07e412d4409 Message-Id: <20240209173948.315A83858417@sourceware.org> Date: Fri, 9 Feb 2024 17:39:48 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c93082545716dac16b9c408e6069f07e412d4409 commit c93082545716dac16b9c408e6069f07e412d4409 Author: Adhemerval Zanella Date: Tue Feb 6 16:52:45 2024 -0300 bench-malloc-thread: Add libm for powf The bench-malloc-thread.c:63 does use powf and compiler might not optimzie it away. Diff: --- benchtests/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/benchtests/Makefile b/benchtests/Makefile index 4fb9bae023..dca40645fb 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -307,6 +307,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)