powerpc: Fix format issue from 3a16dd780e

* sysdeps/powerpc/fpu/s_fma.c: Fix format.
	* sysdeps/powerpc/fpu/s_fmaf.c: Likewise.
This commit is contained in:
Adhemerval Zanella 2019-04-17 18:32:01 -03:00
parent 3a16dd780e
commit 52faba65f8
3 changed files with 7 additions and 2 deletions

View File

@ -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.

View 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);
}

View 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);
}