commit | 0919dbaab324bc1cbefce106629838104ca12b54 | [log] [tgz] |
---|---|---|
author | Howard Hinnant <hhinnant@apple.com> | Tue Nov 06 21:55:44 2012 +0000 |
committer | Howard Hinnant <hhinnant@apple.com> | Tue Nov 06 21:55:44 2012 +0000 |
tree | 25e143f568c1f14a320d73049700d7110923f684 | |
parent | 9bae2a9dc5b7e4a2877ac8823d9ae266f6741bb7 [diff] [blame] |
Dimitry Andric: Silence some miscellaneous warnings. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@167493 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/cmath b/include/cmath index a70bbf2..d3fbfe6 100644 --- a/include/cmath +++ b/include/cmath
@@ -1202,7 +1202,9 @@ // fma inline _LIBCPP_INLINE_VISIBILITY float fmaf(float __x, float __y, float __z) _NOEXCEPT {return (float)((double)__x*__y + __z);} +#ifndef FP_FAST_FMAF #define FP_FAST_FMAF +#endif using ::fma;