diff options
Diffstat (limited to 'llvm/lib/Support/MathExtras.cpp')
-rw-r--r-- | llvm/lib/Support/MathExtras.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/MathExtras.cpp b/llvm/lib/Support/MathExtras.cpp index 6b9d048f636..ba0924540ce 100644 --- a/llvm/lib/Support/MathExtras.cpp +++ b/llvm/lib/Support/MathExtras.cpp @@ -1,4 +1,4 @@ -//===-- MathExtras.cpp - Implement the MathExtras header ------------------===// +//===-- MathExtras.cpp - Implement the MathExtras header --------------===// // // The LLVM Compiler Infrastructure // @@ -16,7 +16,7 @@ #ifdef _MSC_VER #include <limits> #else -#include <cmath> +#include <math.h> #endif namespace llvm { @@ -29,4 +29,4 @@ namespace llvm { const float huge_valf = HUGE_VALF; #endif -} // end namespace llvm +} |