From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 85D053858CDB; Wed, 17 Jan 2024 11:18:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 85D053858CDB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1705490288; bh=Eq/qZV+9sByaLlU4xvxUzi1OHRGAGODTAy69XNdiWVw=; h=From:To:Subject:Date:From; b=GQmP9IXySD6NltenTaiAMFBP3E+FXvbv+igGwIrFwhbANChzaG3Bjj++joq46elZz w/yFDy04rgHzF3qScqj3oGvxfMtY6fdMJcFuzCnQCRQH2LwOQBtfj4vDCSyvHhUtl2 H17/DEDpOgrFmlTyp+tpA03vHP90j51aW9Pze+D8= 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] stdlib: Remove unused is_aligned function from qsort.c X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/master X-Git-Oldrev: e2803cfd8bb00b54816d1a2c381d2cf82b136da6 X-Git-Newrev: 31bd548650673e8b5ae1a31f1c596ff8305a5d4c Message-Id: <20240117111808.85D053858CDB@sourceware.org> Date: Wed, 17 Jan 2024 11:18:08 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=31bd548650673e8b5ae1a31f1c596ff8305a5d4c commit 31bd548650673e8b5ae1a31f1c596ff8305a5d4c Author: Adhemerval Zanella Date: Wed Jan 17 08:08:01 2024 -0300 stdlib: Remove unused is_aligned function from qsort.c Checked on x86_64-linux-gnu. Diff: --- stdlib/qsort.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/stdlib/qsort.c b/stdlib/qsort.c index 45af8da80c..7f5a00fb33 100644 --- a/stdlib/qsort.c +++ b/stdlib/qsort.c @@ -40,19 +40,6 @@ enum swap_type_t typedef uint32_t __attribute__ ((__may_alias__)) u32_alias_t; typedef uint64_t __attribute__ ((__may_alias__)) u64_alias_t; -/* If this function returns true, elements can be safely copied using word - loads and stores. Otherwise, it might not be safe. BASE (as an integer) - must be a multiple of the word alignment. SIZE must be a multiple of - WORDSIZE. Since WORDSIZE must be a multiple of the word alignment, and - WORDSIZE is a power of two on all supported platforms, this function for - speed merely checks that BASE and SIZE are both multiples of the word - size. */ -static inline bool -is_aligned (const void *base, size_t size, size_t wordsize) -{ - return (((uintptr_t) base | size) & (wordsize - 1)) == 0; -} - static inline void swap_words_64 (void * restrict a, void * restrict b, size_t n) {