From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 1D9703858439; Mon, 29 Jan 2024 18:04:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1D9703858439 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1706551471; bh=NXbIjcNn8CUtP+m2+2dhDfc2TYSsWtBII4iNit8mzQs=; h=From:To:Subject:Date:From; b=C67yFxtuu1LRHnx2Qv2Nd1iXZr9k+Y+bw0WWCmAFM/yBSHD2fn0KnpAGNVKknmxdy PhSWw80+31sZeEFsm8KlEL6hvPCh96GBrrs1aO7Z9gMCMu89byNtHCAdsZKNhyHP6t 1lTM8pBGTXDAfW9masIagvx7XL3GIQi4+MxBUAuY= 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] Fix loongarch stpcpy on loader X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 27267632a611f3a7b730fb809f6f320c42509197 X-Git-Newrev: ec23b52bc36634dbf4a0b803ba2f2edc0f38717e Message-Id: <20240129180431.1D9703858439@sourceware.org> Date: Mon, 29 Jan 2024 18:04:31 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ec23b52bc36634dbf4a0b803ba2f2edc0f38717e commit ec23b52bc36634dbf4a0b803ba2f2edc0f38717e Author: Adhemerval Zanella Date: Thu Nov 23 14:19:52 2023 -0300 Fix loongarch stpcpy on loader Diff: --- sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S b/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S new file mode 100644 index 0000000000..5ec787481a --- /dev/null +++ b/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S @@ -0,0 +1,3 @@ +#define USE_AS_STPCPY +#define STRCPY stpcpy +#include "strcpy-aligned.S"