This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1/13] AArch64: Cleanup fenv implementation


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

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)
-- 
1.9.1




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]