From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7933) id 90286385C6F7; Mon, 10 Jul 2023 12:50:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 90286385C6F7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1688993417; bh=cD3RFNXiLnvdX6uDifZ/yW04Q8EFcc84QRSQ+DRdLJs=; h=From:To:Subject:Date:From; b=OGVccW4giD5iPdbcjv64IZrVE+wTwj4AFzCYrZKeOId6eMhJWTEYbGZpZYdkvPZkF eeP1OTxYNZP5JRcv/Vf1GWCsbDRSRzOX4Yz9/PmuNctIRw044GuG8KtNyOvsmPZp92 XgNheBAtlrFOrqaGKBsNvYqlaHWXYo0I+XIyl3nA= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: Frederic Berat To: glibc-cvs@sourceware.org Subject: [glibc] sysdeps: Add missing hidden definitions for i386 X-Act-Checkin: glibc X-Git-Author: =?utf-8?b?RnLDqWTDqXJpYyBCw6lyYXQ=?= X-Git-Refname: refs/heads/master X-Git-Oldrev: e30048fdc1878a65d9a1a13305d74b8de542bae9 X-Git-Newrev: 19f9f7f9d5064ad6608e6d40a3aa1b3db8a4a1ae Message-Id: <20230710125017.90286385C6F7@sourceware.org> Date: Mon, 10 Jul 2023 12:50:17 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=19f9f7f9d5064ad6608e6d40a3aa1b3db8a4a1ae commit 19f9f7f9d5064ad6608e6d40a3aa1b3db8a4a1ae Author: Frédéric Bérat Date: Thu Jul 6 19:14:59 2023 +0200 sysdeps: Add missing hidden definitions for i386 Add missing libc_hidden_builtin_def for memset_chk and MEMCPY_CHK on i386. Diff: --- sysdeps/i386/memcpy.S | 1 + sysdeps/i386/memset.S | 1 + 2 files changed, 2 insertions(+) diff --git a/sysdeps/i386/memcpy.S b/sysdeps/i386/memcpy.S index a6512b453e..e48396ea21 100644 --- a/sysdeps/i386/memcpy.S +++ b/sysdeps/i386/memcpy.S @@ -46,6 +46,7 @@ ENTRY (MEMCPY_CHK) cmpl %eax, 16(%esp) jb HIDDEN_JUMPTARGET (__chk_fail) END (MEMCPY_CHK) +libc_hidden_builtin_def (MEMCPY_CHK) #endif ENTRY (MEMCPY) PUSH (%esi) diff --git a/sysdeps/i386/memset.S b/sysdeps/i386/memset.S index 4a107d604b..855720822e 100644 --- a/sysdeps/i386/memset.S +++ b/sysdeps/i386/memset.S @@ -40,6 +40,7 @@ ENTRY (__memset_chk) cmpl %eax, 16(%esp) jb HIDDEN_JUMPTARGET (__chk_fail) END (__memset_chk) +libc_hidden_builtin_def (__memset_chk) #endif ENTRY (memset) PUSH (%edi)