diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-11 06:30:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-11 06:30:04 +0000 |
commit | 6d7cf509d1e53ff6c6b754d93104def5639d2f3a (patch) | |
tree | 43b2406cf911346881dcce5450eb1166f5005353 | |
parent | b3220147d28f1578de21dffcb77850f5982dca99 (diff) | |
download | bcm5719-llvm-6d7cf509d1e53ff6c6b754d93104def5639d2f3a.tar.gz bcm5719-llvm-6d7cf509d1e53ff6c6b754d93104def5639d2f3a.zip |
don't include loopinfo.h from this file.
llvm-svn: 45858
-rw-r--r-- | llvm/include/llvm/Transforms/Utils/Cloning.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/Cloning.h b/llvm/include/llvm/Transforms/Utils/Cloning.h index be15d6cd025..1e2bbaa295b 100644 --- a/llvm/include/llvm/Transforms/Utils/Cloning.h +++ b/llvm/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 /// |