aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-11 06:30:04 +0000
committerChris Lattner <sabre@nondot.org>2008-01-11 06:30:04 +0000
commitfac7efbdcf6c9111defcc6231daafc9f4a5c9721 (patch)
tree1328aac41871f8f1fbacf364828015433d73fe07 /include
parent00adcf163bf4e29090a88915c2e26e3e0b82f5f5 (diff)
downloadexternal_llvm-fac7efbdcf6c9111defcc6231daafc9f4a5c9721.zip
external_llvm-fac7efbdcf6c9111defcc6231daafc9f4a5c9721.tar.gz
external_llvm-fac7efbdcf6c9111defcc6231daafc9f4a5c9721.tar.bz2
don't include loopinfo.h from this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 be15d6c..1e2bbaa 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
///