aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-01-02 22:09:33 +0000
committerChris Lattner <sabre@nondot.org>2011-01-02 22:09:33 +0000
commit9fc5cdf77c812aaa80419036de27576d45894d0d (patch)
treee3bcc21438619a6cfba529f5f7c51618bd83d323 /lib/VMCore
parent12be936cc912b1ff4d1c73c7f2c805a3462da1ab (diff)
downloadexternal_llvm-9fc5cdf77c812aaa80419036de27576d45894d0d.zip
external_llvm-9fc5cdf77c812aaa80419036de27576d45894d0d.tar.gz
external_llvm-9fc5cdf77c812aaa80419036de27576d45894d0d.tar.bz2
split dom frontier handling stuff out to its own DominanceFrontier header,
so that Dominators.h is *just* domtree. Also prune #includes a bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Dominators.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp
index b758168..19dda8c 100644
--- a/lib/VMCore/Dominators.cpp
+++ b/lib/VMCore/Dominators.cpp
@@ -14,7 +14,7 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/Analysis/Dominators.h"
+#include "llvm/Analysis/DominanceFrontier.h"
#include "llvm/Support/CFG.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h"
@@ -23,6 +23,7 @@
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Analysis/DominatorInternals.h"
+#include "llvm/Assembly/Writer.h"
#include "llvm/Instructions.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/CommandLine.h"