This is the mail archive of the glibc-cvs@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]

[glibc] powerpc: Fix format issue from 3a16dd780eeba602


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=52faba65f84ee5a8d82ff813bcfa0ee5f4d480cf

commit 52faba65f84ee5a8d82ff813bcfa0ee5f4d480cf
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Apr 17 18:32:01 2019 -0300

    powerpc: Fix format issue from 3a16dd780eeba602
    
    	* sysdeps/powerpc/fpu/s_fma.c: Fix format.
    	* sysdeps/powerpc/fpu/s_fmaf.c: Likewise.

Diff:
---
 ChangeLog                    | 3 +++
 sysdeps/powerpc/fpu/s_fma.c  | 3 ++-
 sysdeps/powerpc/fpu/s_fmaf.c | 3 ++-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 8a852d9..f68bba9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2019-04-17  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
+	* sysdeps/powerpc/fpu/s_fma.c: Fix format.
+	* sysdeps/powerpc/fpu/s_fmaf.c: Likewise.
+
 	* sysdeps/powerpc/fpu/s_fma.S: Remove file.
 	* sysdeps/powerpc/fpu/s_fmaf.S: Likewise.
 	* sysdeps/powerpc/fpu/s_fma.c: New file.
diff --git a/sysdeps/powerpc/fpu/s_fma.c b/sysdeps/powerpc/fpu/s_fma.c
index 688f9ba..24bb734 100644
--- a/sysdeps/powerpc/fpu/s_fma.c
+++ b/sysdeps/powerpc/fpu/s_fma.c
@@ -19,7 +19,8 @@
 #include <sysdep.h>
 #include <libm-alias-double.h>
 
-double __fma (double x, double y, double z)
+double
+__fma (double x, double y, double z)
 {
   return __builtin_fma (x, y, z);
 }
diff --git a/sysdeps/powerpc/fpu/s_fmaf.c b/sysdeps/powerpc/fpu/s_fmaf.c
index 38b59e1..893f738 100644
--- a/sysdeps/powerpc/fpu/s_fmaf.c
+++ b/sysdeps/powerpc/fpu/s_fmaf.c
@@ -19,7 +19,8 @@
 #include <sysdep.h>
 #include <libm-alias-float.h>
 
-float __fmaf (float x, float y, float z)
+float
+__fmaf (float x, float y, float z)
 {
   return __builtin_fmaf (x, y, z);
 }


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