From 3dab223dc9a398b30484fca23d912433ea0033f3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 11 Jan 2008 06:30:04 +0000 Subject: [PATCH] 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 --- include/llvm/Transforms/Utils/Cloning.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h index be15d6cd025..1e2bbaa295b 100644 --- a/include/llvm/Transforms/Utils/Cloning.h +++ b/include/llvm/Transforms/Utils/Cloning.h @@ -20,7 +20,6 @@ #include #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 LoopBase; +typedef LoopBase Loop; /// CloneModule - Return an exact copy of the specified module ///