minor fmaf() formatting fix.

This commit is contained in:
Tres Finocchiaro
2014-12-08 12:45:31 -05:00
parent 76d766fe25
commit 5a0dfdd3c0

View File

@@ -134,7 +134,7 @@ static inline int fast_rand()
static inline long fastFmal( long a, long b, long c ) {
#ifdef FP_FAST_FMAF
#ifdef __clang__
return fma(a, b, c);
return fma( a, b, c );
#else
return fmal( a, b, c );
#endif