From patchwork Thu Nov 30 23:48:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 843244 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-87698-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="pC0aApah"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ynvHJ3ZLvz9sBZ for ; Fri, 1 Dec 2017 10:48:28 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=NPOflJMSJcb4tciL2Rdq3ZrsdXED7 aPDYOOs6ubeTZ3cWI9KeqTkOn5wF34HzMbNLq37tbqRrJdyqZFuakJKaEWLi5YHB 2fVl6rM9ZMHjKVnC2Z8POY+J4y4S8w67mgVhxhnkYiLyY5kyVKwSYIN4OhshLi/n 3+5hJoGSCZhKVU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=TEwZQk0U5EcRRPgRs9rDcVzpoyk=; b=pC0 aApah0XLFgx1O+D41v6jcQEnS415fd8Q5apP9Aj2uvTb4zk1+jwBv/oM+G6+vymL tsAR4xPhecA2praRnH1dm2jXw+d151h1pOKDjHuwIQFcKxtvpN8RwjptByeX8/b4 IV82esDmqEQO33z/HFMPuivYVIvyVQIgZfAYNvnA= Received: (qmail 66648 invoked by alias); 30 Nov 2017 23:48:20 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 66485 invoked by uid 89); 30 Nov 2017 23:48:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Thu, 30 Nov 2017 23:48:00 +0000 From: Joseph Myers To: Subject: Use libm_alias_double for coldfire [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-03.mgc.mentorg.com (139.181.222.3) Continuing the preparation for additional _FloatN / _FloatNx function aliases, this patch makes coldfire libm function implementations use libm_alias_double to define function aliases. Untested, given the currently broken state of GCC for coldfire. Committed. 2017-11-30 Joseph Myers * sysdeps/m68k/coldfire/fpu/s_fabs.c: Include . (fabs): Define using libm_alias_double. * sysdeps/m68k/coldfire/fpu/s_lrint.c: Include . (lrint): Define using libm_alias_double. * sysdeps/m68k/coldfire/fpu/s_rint.c: Include . (rint): Define using libm_alias_double. diff --git a/sysdeps/m68k/coldfire/fpu/s_fabs.c b/sysdeps/m68k/coldfire/fpu/s_fabs.c index 6c1a8dc..337d293 100644 --- a/sysdeps/m68k/coldfire/fpu/s_fabs.c +++ b/sysdeps/m68k/coldfire/fpu/s_fabs.c @@ -15,14 +15,12 @@ License along with the GNU C Library. If not, see . */ +#include + double __fabs (double x) { asm ("fdabs.d %1,%0" : "=f" (x) : "fm" (x)); return x; } -weak_alias (__fabs, fabs) -#ifdef NO_LONG_DOUBLE -strong_alias (__fabs, __fabsl) -weak_alias (__fabs, fabsl) -#endif +libm_alias_double (__fabs, fabs) diff --git a/sysdeps/m68k/coldfire/fpu/s_lrint.c b/sysdeps/m68k/coldfire/fpu/s_lrint.c index 0cdad32..3fa878c 100644 --- a/sysdeps/m68k/coldfire/fpu/s_lrint.c +++ b/sysdeps/m68k/coldfire/fpu/s_lrint.c @@ -15,6 +15,8 @@ License along with the GNU C Library. If not, see . */ +#include + long int __lrint (double x) { @@ -22,8 +24,4 @@ __lrint (double x) asm ("fmove.l %1,%0" : "=dm" (result) : "f" (x)); return result; } -weak_alias (__lrint, lrint) -#ifdef NO_LONG_DOUBLE -strong_alias (__lrint, __lrintl) -weak_alias (__lrint, lrintl) -#endif +libm_alias_double (__lrint, lrint) diff --git a/sysdeps/m68k/coldfire/fpu/s_rint.c b/sysdeps/m68k/coldfire/fpu/s_rint.c index e950630..feef367 100644 --- a/sysdeps/m68k/coldfire/fpu/s_rint.c +++ b/sysdeps/m68k/coldfire/fpu/s_rint.c @@ -15,14 +15,12 @@ License along with the GNU C Library. If not, see . */ +#include + double __rint (double x) { asm ("fint.d %1,%0" : "=f" (x) : "fm" (x)); return x; } -weak_alias (__rint, rint) -#ifdef NO_LONG_DOUBLE -strong_alias (__rint, __rintl) -weak_alias (__rint, rintl) -#endif +libm_alias_double (__rint, rint)