From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7852) id E9C193858405; Thu, 5 May 2022 16:41:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E9C193858405 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.34/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.34/master X-Git-Oldrev: 5cb6329652696e79d6d576165ea87e332c9de106 X-Git-Newrev: 70509f9b4807295b2b4b43bffe110580fc0381ef Message-Id: <20220505164128.E9C193858405@sourceware.org> Date: Thu, 5 May 2022 16:41:28 +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 16:41:29 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=70509f9b4807295b2b4b43bffe110580fc0381ef commit 70509f9b4807295b2b4b43bffe110580fc0381ef 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 39a096a594..d9c577fb5f 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))