From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7852) id 459C9385E03D; Thu, 5 May 2022 06:23:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 459C9385E03D Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sunil Pandey To: glibc-cvs@sourceware.org Subject: [glibc/release/2.35/master] x86: Set .text section in memset-vec-unaligned-erms X-Act-Checkin: glibc X-Git-Author: Noah Goldstein X-Git-Refname: refs/heads/release/2.35/master X-Git-Oldrev: de0cd691b2095912f9128fabfb572d835938d655 X-Git-Newrev: c394d7e11a2cc5d99dc1ba3833727c37536d4838 Message-Id: <20220505062308.459C9385E03D@sourceware.org> Date: Thu, 5 May 2022 06:23:08 +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: Thu, 05 May 2022 06:23:08 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c394d7e11a2cc5d99dc1ba3833727c37536d4838 commit c394d7e11a2cc5d99dc1ba3833727c37536d4838 Author: Noah Goldstein Date: Sat Feb 12 00:45:00 2022 -0600 x86: Set .text section in memset-vec-unaligned-erms commit 3d9f171bfb5325bd5f427e9fc386453358c6e840 Author: H.J. Lu Date: Mon Feb 7 05:55:15 2022 -0800 x86-64: Optimize bzero Remove setting the .text section for the code. This commit adds that back. (cherry picked from commit 7912236f4a597deb092650ca79f33504ddb4af28) Diff: --- sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S index 7c94fcdae1..785fee1d57 100644 --- a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S +++ b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S @@ -114,6 +114,7 @@ # error SECTION is not defined! #endif + .section SECTION(.text), "ax", @progbits #if IS_IN (libc) # if defined SHARED ENTRY_CHK (WMEMSET_CHK_SYMBOL (__wmemset_chk, unaligned))