diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 03:57:37 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 03:57:37 +0000 |
commit | bd353fb6625db70e902bb0c1eec2caac1ac243b1 (patch) | |
tree | 36087e5e05b4fdf4b7f7ac48b52d70422e24f474 /lib/CodeGen | |
parent | 37bc4cce9baf500162ef2b94a2eebb3175fd6ed5 (diff) |
Use C++ math header instead of C version.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 1c740b6e01..0c64846e5c 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -23,7 +23,7 @@ #include "Support/STLExtras.h" #include "Support/SetOperations.h" #include "Support/CommandLine.h" -#include <math.h> +#include <cmath> RegAllocDebugLevel_t DEBUG_RA; |