commit | c598517c24c2ee87acafd67643b9a19bda8514af | [log] [tgz] |
---|---|---|
author | Brian Gaeke <gaeke@uiuc.edu> | Fri Apr 16 15:57:32 2004 +0000 |
committer | Brian Gaeke <gaeke@uiuc.edu> | Fri Apr 16 15:57:32 2004 +0000 |
tree | a4ef30b3516b794e9f93b9aa714a14792fb703a4 | |
parent | 5a509c8225063478ee04671570f6975ce29f401d [diff] [blame] |
Include <cmath> for compatibility with gcc 3.0.x (the system compiler on Debian.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12986 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 0d880ed..33a4050 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp
@@ -76,6 +76,7 @@ #include "llvm/Support/ConstantRange.h" #include "llvm/Support/InstIterator.h" #include "Support/Statistic.h" +#include <cmath> using namespace llvm; namespace {