From patchwork Mon Sep 11 01:16:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Gabriel F. T. Gomes" X-Patchwork-Id: 812197 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-84429-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="HrDWyKC8"; 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 3xr9533qN1z9s4q for ; Mon, 11 Sep 2017 11:17:10 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=eUXdTo/bPC4bJi9sciCzli/4nkxq0 NY1L5l3WAk9ruAetg34ogVhymUAPgntV0SPQHBYqA7IXCNwurVNDLPkmZLA9kM23 dL3b8tRfIifw4vENcYBZkK7yV35lcnoohEAMB2wfOFXdxdMFobLpifomq0nv0Erc L/0p2iXEpzipbk= 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:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=oJ0SJOthWsNccG9aJmqStxZ+GhM=; b=HrD WyKC8uPXAtnREeVyKtkVxQVqbzPN3HJRF9ZOLIXDtpjOMl5juNQS6rGFujlrOAD1 LZE2gZ4lEVTHedkWY/1gkxSm9CXJizVl/w8Kog1FdbMKLQSIACsdjaTUswiRfuSd 7fgyo9kYw6Pyz2GlhQRoFvghYNANP8GHWeUEY9Sg= Received: (qmail 35500 invoked by alias); 11 Sep 2017 01:17:05 -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 35300 invoked by uid 89); 11 Sep 2017 01:17:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.9 required=5.0 tests=BAYES_00, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=H*r:Mon, H*F:D*br X-HELO: mo19.mail-out.ovh.net From: "Gabriel F. T. Gomes" To: Subject: [PATCH v2 0/5] Fixes for gcc enabling -mfloat128 by default Date: Sun, 10 Sep 2017 22:16:49 -0300 Message-ID: <20170911011654.28743-1-gabriel@inconstante.eti.br> MIME-Version: 1.0 X-ClientProxiedBy: EX1.emp.local (172.16.2.1) To EX2.emp.local (172.16.2.2) X-Ovh-Tracer-Id: 16432509140409568963 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeelledrfeelgddtfecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemuceftddtnecu Changes since v1 in each individual patch Gabriel F. T. Gomes (5): powerpc64le: Add -mfloat128 to tst-strtod-nan-locale testcase powerpc: Add redirection for finitef128, isinf128, and isnanf128 ldbl-128ibm: Copy implementations from ldbl-128 instead of including them ldbl-128ibm: Automatic replacing of _Float128 and L() Remove conditional on LDBL_MANT_DIG from e_lgammal_r.c sysdeps/ieee754/ldbl-128/e_lgammal_r.c | 6 +- sysdeps/ieee754/ldbl-128ibm/e_expl.c | 4 +- sysdeps/ieee754/ldbl-128ibm/e_j0l.c | 868 +++++++++++++++++- sysdeps/ieee754/ldbl-128ibm/e_j1l.c | 889 +++++++++++++++++- sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c | 996 ++++++++++++++++++++- sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c | 103 ++- sysdeps/ieee754/ldbl-128ibm/t_expl.h | 970 ++++++++++++++++++++ sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c | 7 + sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c | 7 + sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c | 7 + sysdeps/powerpc/powerpc64le/Makefile | 3 + 11 files changed, 3834 insertions(+), 26 deletions(-) create mode 100644 sysdeps/ieee754/ldbl-128ibm/t_expl.h