aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/Local.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-04-16 15:57:32 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-04-16 15:57:32 +0000
commitc598517c24c2ee87acafd67643b9a19bda8514af (patch)
treea4ef30b3516b794e9f93b9aa714a14792fb703a4 /lib/Transforms/Utils/Local.cpp
parent5a509c8225063478ee04671570f6975ce29f401d (diff)
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
Diffstat (limited to 'lib/Transforms/Utils/Local.cpp')
-rw-r--r--lib/Transforms/Utils/Local.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp
index 29132c0680..76a22a44dd 100644
--- a/lib/Transforms/Utils/Local.cpp
+++ b/lib/Transforms/Utils/Local.cpp
@@ -15,6 +15,7 @@
#include "llvm/Transforms/Utils/Local.h"
#include "llvm/Constants.h"
#include "llvm/Instructions.h"
+#include <cmath>
using namespace llvm;
//===----------------------------------------------------------------------===//