diff options
author | Chris Lattner <sabre@nondot.org> | 2011-01-02 22:09:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-01-02 22:09:33 +0000 |
commit | 9fc5cdf77c812aaa80419036de27576d45894d0d (patch) | |
tree | e3bcc21438619a6cfba529f5f7c51618bd83d323 /lib/Transforms/Scalar/LoopRotation.cpp | |
parent | 12be936cc912b1ff4d1c73c7f2c805a3462da1ab (diff) |
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/Transforms/Scalar/LoopRotation.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopRotation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp index efa46f4781..1e655fdc4c 100644 --- a/lib/Transforms/Scalar/LoopRotation.cpp +++ b/lib/Transforms/Scalar/LoopRotation.cpp @@ -15,7 +15,7 @@ #include "llvm/Transforms/Scalar.h" #include "llvm/Function.h" #include "llvm/Analysis/LoopPass.h" -#include "llvm/Analysis/Dominators.h" +#include "llvm/Analysis/DominanceFrontier.h" #include "llvm/Analysis/CodeMetrics.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Transforms/Utils/Local.h" |