[LCG] Add support for building persistent and connected SCCs to the
[oota-llvm.git] / lib / Analysis / PostDominators.cpp
index 6ed27297923fc1b753d761cefa38d4a6591ee540..f23833a95415775efe150d8f195e7bc9edc31c0d 100644 (file)
 #define DEBUG_TYPE "postdomtree"
 
 #include "llvm/Analysis/PostDominators.h"
-#include "llvm/Instructions.h"
-#include "llvm/Support/CFG.h"
-#include "llvm/Support/Debug.h"
 #include "llvm/ADT/DepthFirstIterator.h"
 #include "llvm/ADT/SetOperations.h"
-#include "llvm/Assembly/Writer.h"
-#include "llvm/Analysis/DominatorInternals.h"
+#include "llvm/IR/CFG.h"
+#include "llvm/IR/Instructions.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/Support/GenericDomTreeConstruction.h"
 using namespace llvm;
 
 //===----------------------------------------------------------------------===//