]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
powerpc: Fix format issue from 3a16dd780eeba602
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 17 Apr 2019 21:32:01 +0000 (18:32 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 17 Apr 2019 21:32:01 +0000 (18:32 -0300)
* sysdeps/powerpc/fpu/s_fma.c: Fix format.
* sysdeps/powerpc/fpu/s_fmaf.c: Likewise.

ChangeLog
sysdeps/powerpc/fpu/s_fma.c
sysdeps/powerpc/fpu/s_fmaf.c

index 8a852d903d0a89b56eb879ff27fcda93e75b0b82..f68bba94c722282d910865b4760a91d28ded6039 100644 (file)
--- 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.
index 688f9badf51da488d9022573bf15134149339baa..24bb7340e6965610a54731a018cb253bbddca8f9 100644 (file)
@@ -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);
 }
index 38b59e1f2f674aed48d49fcc4d4e014e70fb971c..893f738b499bfda61e87d5ba0635f72d2a60f0e6 100644 (file)
@@ -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);
 }