Include <cmath> for compatibility with gcc 3.0.x (the system compiler on
Debian.)
llvm-svn: 12986
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp
index 29132c0..76a22a4 100644
--- a/llvm/lib/Transforms/Utils/Local.cpp
+++ b/llvm/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;
//===----------------------------------------------------------------------===//