[llvm-commits] [llvm] r45858 - /llvm/trunk/include/llvm/Transforms/Utils/Cloning.h
Chris Lattner
sabre at nondot.org
Thu Jan 10 22:30:04 PST 2008
Author: lattner
Date: Fri Jan 11 00:30:04 2008
New Revision: 45858
URL: http://llvm.org/viewvc/llvm-project?rev=45858&view=rev
Log:
don't include loopinfo.h from this file.
Modified:
llvm/trunk/include/llvm/Transforms/Utils/Cloning.h
Modified: llvm/trunk/include/llvm/Transforms/Utils/Cloning.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/Utils/Cloning.h?rev=45858&r1=45857&r2=45858&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Transforms/Utils/Cloning.h (original)
+++ llvm/trunk/include/llvm/Transforms/Utils/Cloning.h Fri Jan 11 00:30:04 2008
@@ -20,7 +20,6 @@
#include <vector>
#include "llvm/ADT/DenseMap.h"
-#include "llvm/Analysis/LoopInfo.h"
namespace llvm {
@@ -37,6 +36,9 @@
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
///
More information about the llvm-commits
mailing list