From patchwork Tue Jun 10 16:58:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wilco Dijkstra X-Patchwork-Id: 1418 Received: (qmail 4844 invoked by alias); 10 Jun 2014 16:58:51 -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 4825 invoked by uid 89); 10 Jun 2014 16:58:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com From: "Wilco" To: "GNU C Library" Subject: [PATCH 1/5] ARM: Cleanup fenv implementation Date: Tue, 10 Jun 2014 17:58:38 +0100 Message-ID: <002e01cf84cd$3997de50$acc79af0$@com> MIME-Version: 1.0 X-MC-Unique: 114061017584502101 Hi, This is a series of patches which improves the ARM fenv implementation. The first removes some spaces before libm_hidden_def. ChangeLog: 2014-06-10 Wilco * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space. * sysdeps/arm/fesetenv.c (fesetenv): Remove space. * sysdeps/arm/fesetround.c (fesetround): Remove space. * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space. --- sysdeps/arm/feholdexcpt.c | 1 - sysdeps/arm/fesetenv.c | 1 - sysdeps/arm/fesetround.c | 1 - sysdeps/arm/fraiseexcpt.c | 1 - 4 files changed, 4 deletions(-) diff --git a/sysdeps/arm/feholdexcpt.c b/sysdeps/arm/feholdexcpt.c index 2d79e0c..0f72aeea 100644 --- a/sysdeps/arm/feholdexcpt.c +++ b/sysdeps/arm/feholdexcpt.c @@ -30,5 +30,4 @@ feholdexcept (fenv_t *envp) libc_feholdexcept_vfp (envp); return 0; } - libm_hidden_def (feholdexcept) diff --git a/sysdeps/arm/fesetenv.c b/sysdeps/arm/fesetenv.c index 3bc9216..478edf0 100644 --- a/sysdeps/arm/fesetenv.c +++ b/sysdeps/arm/fesetenv.c @@ -59,5 +59,4 @@ fesetenv (const fenv_t *envp) return 0; } - libm_hidden_def (fesetenv) diff --git a/sysdeps/arm/fesetround.c b/sysdeps/arm/fesetround.c index d79f910..2e21925 100644 --- a/sysdeps/arm/fesetround.c +++ b/sysdeps/arm/fesetround.c @@ -35,5 +35,4 @@ fesetround (int round) libc_fesetround_vfp (round); return 0; } - libm_hidden_def (fesetround) diff --git a/sysdeps/arm/fraiseexcpt.c b/sysdeps/arm/fraiseexcpt.c index a964cb0..91ec86f 100644 --- a/sysdeps/arm/fraiseexcpt.c +++ b/sysdeps/arm/fraiseexcpt.c @@ -102,5 +102,4 @@ feraiseexcept (int excepts) return 0; } } - libm_hidden_def (feraiseexcept)