From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id D3CC83858C60; Tue, 15 Mar 2022 18:38:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D3CC83858C60 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] malloc: Fix duplicate inline for do_set_mxfast X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: bca96e18a53f58780c5753cc0a79086d5db79465 X-Git-Newrev: c7a4d66b436f58f9d0c60ceb306b6e773080a5dc Message-Id: <20220315183809.D3CC83858C60@sourceware.org> Date: Tue, 15 Mar 2022 18:38:09 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2022 18:38:10 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c7a4d66b436f58f9d0c60ceb306b6e773080a5dc commit c7a4d66b436f58f9d0c60ceb306b6e773080a5dc Author: Adhemerval Zanella Date: Wed Mar 9 17:24:00 2022 -0300 malloc: Fix duplicate inline for do_set_mxfast Diff: --- malloc/malloc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/malloc/malloc.c b/malloc/malloc.c index f5a6d87160..aa35846e55 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5412,8 +5412,7 @@ do_set_tcache_unsorted_limit (size_t value) } #endif -static inline int -__always_inline +static __always_inline int do_set_mxfast (size_t value) { if (value <= MAX_FAST_SIZE)