From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 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 dcvr.yhbt.net (Postfix) with ESMTPS id A6AE720248 for ; Wed, 3 Apr 2019 01:08:36 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=xF5CD+lEgFx64LZy Zd6vmUTVnRSTV6xzYcivctotfYFy7EebrjUtNLAp9fH17p3BLAEQaFVjB0COa5HJ opFGe0p/G8D3zParlCFEzqHCQYZFqojZmJUYC/Z5HsZtRpS7f72NInQDSbwuvIz8 P+58AYrfK8yxenl/+YLZTXMZqPI= 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:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=Xi4iHnYHnBp0Bn7u2FQwdm 05iaU=; b=uVTze5pKrN9xNFZEfsCYFgnTNUFRyWwEHVraTjgZfcs+3DS+3+31Ll F7V+D79JUGsRbhZAx1Fkd4+45QefuvQ64VZQ/vRp6kXyhSEdy5QOuMyvKQb1kww+ FIrCxyDPyFybO6WrlRexpG6QnI+6h6CDxQF3Cz4+msZzbesByS8NE= Received: (qmail 117736 invoked by alias); 3 Apr 2019 01:08:34 -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 Received: (qmail 117724 invoked by uid 89); 3 Apr 2019 01:08:34 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-pf1-f193.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=subject:to:cc:references:from:openpgp:autocrypt:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=6xIQS6t0qg0A+pEWehg+UnjphK356uPAmNrfYkn4+rw=; b=rWEsqAQsX7jUig/GmXKU+wVJsP3hTRs6A17ib+begJTjskpYjKv/gSNf3ShwC2TuRe nf8IbL4oVqI2Y7k1uWSrMz1DEEgrmwXcqCJoe6qjSVYA3RmKeRGP08y+4jcCkAYI21Fo nSML59pe2StdKQpYRuj+XsvRpM8UxnMADe39y+0BqOCf4cAa3eHuwdU/sSTJdJvORWIw ZCuQ2ak/ydrHvkhfh59VatCFJFqtVrFCBI4+b9jLld1GaqigvDgkNmprKc5Huw5fev5o maYHD0/HMYTdZkFVLrD+ikQR779//8jZf0PcLjFiB2rfpGYy4oL7OQa+Kdv9mLSElcJL HCog== Subject: Re: [PATCH 24/28] powerpc: hypot refactor and optimization To: Joseph Myers Cc: libc-alpha@sourceware.org References: <20190329133529.22523-1-adhemerval.zanella@linaro.org> <20190329133529.22523-25-adhemerval.zanella@linaro.org> From: Adhemerval Zanella Openpgp: preference=signencrypt Message-ID: Date: Wed, 3 Apr 2019 08:08:27 +0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 02/04/2019 03:14, Joseph Myers wrote: > On Fri, 29 Mar 2019, Adhemerval Zanella wrote: > >> + if ((isinf(x) || isinf(y)) >> + && !issignaling (x) && !issignaling (y)) >> + return INFINITY; >> + if (isnan(x) || isnan(y)) >> + return x + y; > > Missign spaces before '('. > Fixed locally.