From 591acbf73264620de26bb90ec32a5c183be98c0d Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Mon, 8 Dec 2014 12:22:33 -0500 Subject: [PATCH] fastFmaf() formatting fixes --- include/lmms_math.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/lmms_math.h b/include/lmms_math.h index c82d32ac5..8c7d07cb0 100644 --- a/include/lmms_math.h +++ b/include/lmms_math.h @@ -136,7 +136,7 @@ static inline long fastFmal( long a, long b, long c) { #ifdef __clang__ return fma(a, b, c); #else - return fmal(a, b, c); + return fmal( a, b, c ); #endif #else return a * ( b - c ) + c; @@ -147,9 +147,9 @@ static inline long fastFmal( long a, long b, long c) { static inline float fastFmaf( float a, float b, float c) { #ifdef FP_FAST_FMAF #ifdef __clang__ - return fma(a, b, c); + return fma( a, b, c ); #else - return fmaf(a, b, c); + return fmaf( a, b, c ); #endif #else return a * ( b - c ) + c; @@ -159,7 +159,7 @@ static inline float fastFmaf( float a, float b, float c) { //! @brief Takes advantage of fma() function if present in hardware static inline int fastFma( int a, int b, int c) { #ifdef FP_FAST_FMAF - return fma(a, b, c); + return fma( a, b, c ); #else return a * ( b - c ) + c; #endif