[1/13] AArch64: Cleanup fenv implementation

Message ID 000b01cfeee7$81da57e0$858f07a0$@com
State Committed
Headers

Commit Message

Wilco Dijkstra Oct. 23, 2014, 5:33 p.m. UTC
  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  <wdijkstr@arm.com>

	* 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(-)
  

Comments

Carlos O'Donell Oct. 23, 2014, 7:52 p.m. UTC | #1
On 10/23/2014 01:33 PM, Wilco Dijkstra wrote:
> 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  <wdijkstr@arm.com>
> 
> 	* 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.

This meets `Trivial Bug-Fix Changes`, and you can push this.

I would have expected you to post with subject "[COMMITTED 1/13] AArch64: ..." :-)

https://sourceware.org/glibc/wiki/Consensus

Cheers,
Carlos.
  

Patch

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)