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 | 1305dc3351d93e2377b538feff62ccf9518b0291 (patch) | |
tree | 26ea2b5d1e2201f8643e17198a54cacf864a47c4 /llvm/lib/Transforms/Scalar/IndVarSimplify.cpp | |
parent | 54a0303fa8235a199502a6f56a39618f4723bdbf (diff) | |
download | bcm5719-llvm-1305dc3351d93e2377b538feff62ccf9518b0291.tar.gz bcm5719-llvm-1305dc3351d93e2377b538feff62ccf9518b0291.zip |
[Modules] Move CFG.h to the IR library as it defines graph traits over
IR types.
llvm-svn: 202827
Diffstat (limited to 'llvm/lib/Transforms/Scalar/IndVarSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/IndVarSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp index 5f7a5caa23f..4a7f30a7822 100644 --- a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -33,6 +33,7 @@ #include "llvm/Analysis/LoopPass.h" #include "llvm/Analysis/ScalarEvolutionExpander.h" #include "llvm/IR/BasicBlock.h" +#include "llvm/IR/CFG.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/Dominators.h" @@ -40,7 +41,6 @@ #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Type.h" -#include "llvm/Support/CFG.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" |