From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 56651 invoked by alias); 17 Oct 2019 16:20:42 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 56642 invoked by uid 89); 17 Oct 2019 16:20:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-19.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=newlib, HTo:U*joel, H*c:alternative X-HELO: mail-wm1-f65.google.com Received: from mail-wm1-f65.google.com (HELO mail-wm1-f65.google.com) (209.85.128.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 17 Oct 2019 16:20:41 +0000 Received: by mail-wm1-f65.google.com with SMTP id f22so3181554wmc.2 for ; Thu, 17 Oct 2019 09:20:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=290nEi0ES+bMrnri0thRF+Rz3EVqOFOGjIR3mKCNt+A=; b=Zd3agRrHUp++b88E7F7M7yyXScpErpq5hauYXEBW8tH0O8glezvjbrS/nJjliPfhEj eaUgAENFRulufar5MrTzE5MeEWTi6llGyePdVWjquRA6dJw8ByVs1GAvh1OZCuStzOJT SP3sK52GZ70P2JPXhrlwNck2zUsXknX5mbiuWd9sqlEh8P86W+x8EwR0y+j/Sl0NBsvz 7ypmD3/wB+ZDFi1mQYozCpJ2srUHyX9Zd995S365iNg2PvxgESsfQYiIrgEAWLIqPI3d P/mDjhOq46ZxJN55vHIP8M6ioBW0GuphVXuiSGP4nyPUFqCsS0aLRn31nScrgXI1PkY7 dPpA== MIME-Version: 1.0 References: <1570636881-25491-1-git-send-email-joel@rtems.org> In-Reply-To: <1570636881-25491-1-git-send-email-joel@rtems.org> From: Kito Cheng Date: Thu, 17 Oct 2019 16:20:00 -0000 Message-ID: Subject: Re: [PATCH] riscv/sys/fenv.h: Add missing extern for fe_dfl_env_p To: Joel Sherrill Cc: Newlib Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019/txt/msg00610.txt.bz2 Hi Joel: LGTM, verified with rv64gc and rv32g. Thanks :) On Thu, Oct 10, 2019 at 12:01 AM Joel Sherrill wrote: > --- > newlib/libc/machine/riscv/sys/fenv.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/newlib/libc/machine/riscv/sys/fenv.h > b/newlib/libc/machine/riscv/sys/fenv.h > index e69978d..6cbd321 100644 > --- a/newlib/libc/machine/riscv/sys/fenv.h > +++ b/newlib/libc/machine/riscv/sys/fenv.h > @@ -72,6 +72,8 @@ > typedef size_t fenv_t; > typedef size_t fexcept_t; > extern const fenv_t fe_dfl_env; > +extern const fenv_t *fe_dfl_env_p; > + > #define FE_DFL_ENV fe_dfl_env_p > > #endif /* _SYS_FENV_H */ > -- > 1.8.3.1 > >