diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-12-02 02:22:01 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-12-02 02:22:01 +0000 |
commit | cc08c831866bb8b6e221f809a11d1310343b65a3 (patch) | |
tree | aa20659305554086dda96dd9d4d7e4247edb34bb /llvm/lib/CodeGen | |
parent | 7a002fec1fc38fbcc01a863928b9862146d5fdc5 (diff) | |
download | bcm5719-llvm-cc08c831866bb8b6e221f809a11d1310343b65a3.tar.gz bcm5719-llvm-cc08c831866bb8b6e221f809a11d1310343b65a3.zip |
Unbreak VC++ build.
llvm-svn: 32113
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 10a3565c33e..9248662e390 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -33,6 +33,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" #include <algorithm> +#include <cmath> using namespace llvm; namespace { diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 18a3db81500..d941640e60a 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp @@ -32,6 +32,7 @@ #include <set> #include <queue> #include <memory> +#include <cmath> using namespace llvm; namespace { diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 9528cb43c85..1dcf9fda059 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -29,6 +29,7 @@ #include <iostream> #include <set> #include <algorithm> +#include <cmath> using namespace llvm; /// makeVTList - Return an instance of the SDVTList struct initialized with the |