From patchwork Thu Oct 23 17:33:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wilco Dijkstra X-Patchwork-Id: 3338 Received: (qmail 26949 invoked by alias); 23 Oct 2014 17:34:01 -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 26899 invoked by uid 89); 23 Oct 2014 17:34:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com From: "Wilco Dijkstra" To: Subject: [PATCH 1/13] AArch64: Cleanup fenv implementation Date: Thu, 23 Oct 2014 18:33:49 +0100 Message-ID: <000b01cfeee7$81da57e0$858f07a0$@com> MIME-Version: 1.0 X-MC-Unique: 114102318335002601 This is a series of patches which improves the AArch64 fenv implementation and makes it more consistent with the ARM version. All but the last 2 make no functional changes. The first patch removes some redundant spaces. ChangeLog: 2014-10-23 Wilco Dijkstra * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces. * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces. * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces. * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces. --- sysdeps/aarch64/fpu/feholdexcpt.c | 1 - sysdeps/aarch64/fpu/fesetenv.c | 1 - sysdeps/aarch64/fpu/fesetround.c | 1 - sysdeps/aarch64/fpu/fraiseexcpt.c | 1 - 4 files changed, 4 deletions(-) diff --git a/sysdeps/aarch64/fpu/feholdexcpt.c b/sysdeps/aarch64/fpu/feholdexcpt.c index 973ba4a..5f67a7c 100644 --- a/sysdeps/aarch64/fpu/feholdexcpt.c +++ b/sysdeps/aarch64/fpu/feholdexcpt.c @@ -47,5 +47,4 @@ feholdexcept (fenv_t *envp) return 0; } - libm_hidden_def (feholdexcept) diff --git a/sysdeps/aarch64/fpu/fesetenv.c b/sysdeps/aarch64/fpu/fesetenv.c index 30193e9..c19680d 100644 --- a/sysdeps/aarch64/fpu/fesetenv.c +++ b/sysdeps/aarch64/fpu/fesetenv.c @@ -67,5 +67,4 @@ fesetenv (const fenv_t *envp) return 0; } - libm_hidden_def (fesetenv) diff --git a/sysdeps/aarch64/fpu/fesetround.c b/sysdeps/aarch64/fpu/fesetround.c index 225096a..d34706d 100644 --- a/sysdeps/aarch64/fpu/fesetround.c +++ b/sysdeps/aarch64/fpu/fesetround.c @@ -44,5 +44,4 @@ fesetround (int round) return 1; } - libm_hidden_def (fesetround) diff --git a/sysdeps/aarch64/fpu/fraiseexcpt.c b/sysdeps/aarch64/fpu/fraiseexcpt.c index 3e5c118..77c6ca7 100644 --- a/sysdeps/aarch64/fpu/fraiseexcpt.c +++ b/sysdeps/aarch64/fpu/fraiseexcpt.c @@ -88,5 +88,4 @@ feraiseexcept (int excepts) return 0; } - libm_hidden_def (feraiseexcept)