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 X-Patchwork-Id: 358057 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 A716F140087 for ; Wed, 11 Jun 2014 02:58:56 +1000 (EST) 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=YB6QXhyFCIvP02zDnAD1kdW1ZnwWz B0ouQeGfdw0WfUmhE2tNCT19/NNZcSyWJMOckU3mqqk2T7t0rrmjNvUvXqm2QAeV tJ4ca3nT8HEaAKfdVCXnzXZ666P+Ge9FtBUYzlV7VL+hcqvwRavlD6zzKZdKEtcJ h8lLik6JRL3hv4= 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=iFn8nVuUUG4+DtWbAntG8rEYTR0=; b=jzo CwCUucB+C7S1TwzGwQNMDq1TJkY3G+LedrACATpPnfADoSrtfxWO7eQ/sxOdvXk4 4uUUB/42MsGt+IQ1sDz0V0NPfDhzmMAh1FaP+pgKVuKfzUv3ickAj6oC40pYCvzR Zhj2cMPnIY5T3whkRgQ6OHso2XUAYeMxH/hIIsRU= 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)