diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:45:46 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:45:46 +0000 |
commit | 03e36d752c461490eb8e07cdbc4fcc92185ff765 (patch) | |
tree | ce0971989d91420aa75fc6b5f6d471587e376ca4 /lib/Analysis/PostDominators.cpp | |
parent | 1fd02bc228441fd84d12e53f1094df8f0d238610 (diff) |
[Modules] Move CFG.h to the IR library as it defines graph traits over
IR types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r-- | lib/Analysis/PostDominators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp index 28969878a13..f23833a9541 100644 --- a/lib/Analysis/PostDominators.cpp +++ b/lib/Analysis/PostDominators.cpp @@ -16,8 +16,8 @@ #include "llvm/Analysis/PostDominators.h" #include "llvm/ADT/DepthFirstIterator.h" #include "llvm/ADT/SetOperations.h" +#include "llvm/IR/CFG.h" #include "llvm/IR/Instructions.h" -#include "llvm/Support/CFG.h" #include "llvm/Support/Debug.h" #include "llvm/Support/GenericDomTreeConstruction.h" using namespace llvm; |