aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Transforms/Utils/Cloning.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h
index be15d6cd02..1e2bbaa295 100644
--- a/include/llvm/Transforms/Utils/Cloning.h
+++ b/include/llvm/Transforms/Utils/Cloning.h
@@ -20,7 +20,6 @@
#include <vector>
#include "llvm/ADT/DenseMap.h"
-#include "llvm/Analysis/LoopInfo.h"
namespace llvm {
@@ -37,6 +36,9 @@ class CallSite;
class Trace;
class CallGraph;
class TargetData;
+class LoopInfo;
+template<class N> class LoopBase;
+typedef LoopBase<BasicBlock> Loop;
/// CloneModule - Return an exact copy of the specified module
///