diff options
author | Chris Lattner <sabre@nondot.org> | 2002-02-12 21:07:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-02-12 21:07:25 +0000 |
commit | 60a6591d83e82990bd8097a08f4d9e51dc63f7cb (patch) | |
tree | 833b7f0a2cafb5fc45f410f40d90ffee44861794 /llvm/lib/Analysis/LoopInfo.cpp | |
parent | 80de23155ae2e9b9f01a6ba5c42b2bb2c52f9406 (diff) | |
download | bcm5719-llvm-60a6591d83e82990bd8097a08f4d9e51dc63f7cb.tar.gz bcm5719-llvm-60a6591d83e82990bd8097a08f4d9e51dc63f7cb.zip |
Method.h no longer includes BasicBlock.h
Method::inst_* is now in llvm/Support/InstIterator.h
GraphTraits specializations for BasicBlock and Methods are now in llvm/Support/CFG.h
llvm-svn: 1746
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 9b34095e4f2..876161d34fc 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -9,7 +9,7 @@ #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/Dominators.h" -#include "llvm/BasicBlock.h" +#include "llvm/Support/CFG.h" #include "Support/DepthFirstIterator.h" #include <algorithm> |