From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id A38803857C71; Tue, 22 Sep 2020 15:58:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A38803857C71 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] x86: Use one ldbl2mpn.c file for both i386 and x86_64 X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/master X-Git-Oldrev: d445d9ca8d961148ffde8ec597ecc0e050542024 X-Git-Newrev: 90ccfdf17628e152d96638adc175ae97bd078cfc Message-Id: <20200922155846.A38803857C71@sourceware.org> Date: Tue, 22 Sep 2020 15:58:46 +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: Tue, 22 Sep 2020 15:58:46 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=90ccfdf17628e152d96638adc175ae97bd078cfc commit 90ccfdf17628e152d96638adc175ae97bd078cfc Author: Florian Weimer Date: Tue Sep 22 17:29:35 2020 +0200 x86: Use one ldbl2mpn.c file for both i386 and x86_64 Diff: --- sysdeps/ia64/ldbl2mpn.c | 2 +- sysdeps/{i386 => x86}/ldbl2mpn.c | 0 sysdeps/x86_64/ldbl2mpn.c | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sysdeps/ia64/ldbl2mpn.c b/sysdeps/ia64/ldbl2mpn.c index 641b789cd4..66ac0a47a4 100644 --- a/sysdeps/ia64/ldbl2mpn.c +++ b/sysdeps/ia64/ldbl2mpn.c @@ -1 +1 @@ -#include "../i386/ldbl2mpn.c" +#include "../x86/ldbl2mpn.c" diff --git a/sysdeps/i386/ldbl2mpn.c b/sysdeps/x86/ldbl2mpn.c similarity index 100% rename from sysdeps/i386/ldbl2mpn.c rename to sysdeps/x86/ldbl2mpn.c diff --git a/sysdeps/x86_64/ldbl2mpn.c b/sysdeps/x86_64/ldbl2mpn.c deleted file mode 100644 index 641b789cd4..0000000000 --- a/sysdeps/x86_64/ldbl2mpn.c +++ /dev/null @@ -1 +0,0 @@ -#include "../i386/ldbl2mpn.c"