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=-3.9 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 BC2CD1F463 for ; Fri, 20 Sep 2019 15:37:02 +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=L47xQV26BX04u+Jt hCwwm4RDCywQq0xVJzenguJYfQFFbdglfbGyCdcxmtSS40InCAO8spDqCBJ0yPy2 ItW8PkvXbDlS8UhVyZy2kI111728HHqa7Prc581v9TWSekRTp01LFOPvOTl7+0OA CqtXBVQrJIQTFsKZ/r8z+61+538= 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=cn2+EtwraGjqqKVfD87YpG UecY4=; b=ylyG7GJHr+cwE4FtwIcU8cd/IhuqSuxCUySaeujVcKri6PAqV5M2dz P4fTTGcNLSwJETYg0/a+4ppDdNiAKp89obcsDzRzStpwWY6KkwsvL/fsKCy4beSO b1/3mS+MFjPnzOAdmnNv6KmYRJuR08T1iQ8h4LQfCG1ilo5VX/j/4= Received: (qmail 83254 invoked by alias); 20 Sep 2019 15:37:00 -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 83244 invoked by uid 89); 20 Sep 2019 15:36:59 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx0a-001b2d01.pphosted.com Subject: Re: [PATCH v2 1/6] [powerpc] fenv_private.h clean up To: "Paul A. Clarke" , libc-alpha@sourceware.org Cc: tuliom@ascii.art.br References: <1568918810-20393-1-git-send-email-pc@us.ibm.com> <1568918810-20393-2-git-send-email-pc@us.ibm.com> From: Paul E Murphy Message-ID: <009aa58a-f899-486c-7ea8-64a608ca91d5@linux.ibm.com> Date: Fri, 20 Sep 2019 10:36:50 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.0 MIME-Version: 1.0 In-Reply-To: <1568918810-20393-2-git-send-email-pc@us.ibm.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 9/19/19 1:46 PM, Paul A. Clarke wrote: > From: "Paul A. Clarke" > -static __always_inline void > -libc_feholdexcept_ppc (fenv_t *envp) > -{ > - __libc_feholdbits_ppc (envp, _FPU_MASK_NOT_RN_NI, 0LL); > -} > - > -static __always_inline void > -libc_feholdexcept_setround_ppc (fenv_t *envp, int r) > -{ > - __libc_feholdbits_ppc (envp, _FPU_MASK_NOT_RN_NI & _FPU_MASK_RN, r); > -} > - > -static __always_inline void > -libc_fesetround_ppc (int r) > -{ > - __fesetround_inline (r); > -} > - > -static __always_inline int > -libc_fetestexcept_ppc (int e) > -{ > - fenv_union_t u; > - u.fenv = fegetenv_register (); > - return u.l & e; > -} > - > -static __always_inline void > -libc_feholdsetround_ppc (fenv_t *e, int r) > -{ > - __libc_feholdbits_ppc (e, _FPU_MASK_TRAPS_RN, r); > -} Are these unused? I still see the macro redirections calling out to them after applying this patch.