Add some missing #includes and forward declarations found by modules build.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 25 Feb 2015 03:12:03 +0000 (03:12 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 25 Feb 2015 03:12:03 +0000 (03:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230457 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/Utils/LoopUtils.h

index 6fdc80322319eee8d709fc21a5cda3a770a32515..bb80f200b0fa50a9950c34df3d83f23d2b3dd528 100644 (file)
 #ifndef LLVM_TRANSFORMS_UTILS_LOOPUTILS_H
 #define LLVM_TRANSFORMS_UTILS_LOOPUTILS_H
 
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/IR/Dominators.h"
+
 namespace llvm {
 class AliasAnalysis;
+class AliasSet;
+class AliasSetTracker;
 class AssumptionCache;
 class BasicBlock;
 class DataLayout;
@@ -23,10 +28,9 @@ class DominatorTree;
 class Loop;
 class LoopInfo;
 class Pass;
-class ScalarEvolution;
-class AliasSetTracker;
-class AliasSet;
 class PredIteratorCache;
+class ScalarEvolution;
+class TargetLibraryInfo;
 
 /// \brief Captures loop safety information.
 /// It keep information for loop & its header may throw exception.