diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-06 03:23:41 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-06 03:23:41 +0000 |
commit | 7da14f1ab9ef46b83a2d67a8f49a9be4faac3d28 (patch) | |
tree | aa03df48613c12e14d8f0ebddeb57fbe4f32b843 /llvm/lib/Analysis/LazyCallGraph.cpp | |
parent | 9d100866f235b792e68b03697c4f7a83ad02e6e8 (diff) | |
download | llvm-7da14f1ab9ef46b83a2d67a8f49a9be4faac3d28.zip llvm-7da14f1ab9ef46b83a2d67a8f49a9be4faac3d28.tar.gz llvm-7da14f1ab9ef46b83a2d67a8f49a9be4faac3d28.tar.bz2 |
[Layering] Move InstVisitor.h into the IR library as it is pretty
obviously coupled to the IR.
llvm-svn: 203064
Diffstat (limited to 'llvm/lib/Analysis/LazyCallGraph.cpp')
-rw-r--r-- | llvm/lib/Analysis/LazyCallGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LazyCallGraph.cpp b/llvm/lib/Analysis/LazyCallGraph.cpp index 42bcd33..e86b266 100644 --- a/llvm/lib/Analysis/LazyCallGraph.cpp +++ b/llvm/lib/Analysis/LazyCallGraph.cpp @@ -10,9 +10,9 @@ #include "llvm/Analysis/LazyCallGraph.h" #include "llvm/ADT/SCCIterator.h" #include "llvm/IR/CallSite.h" +#include "llvm/IR/InstVisitor.h" #include "llvm/IR/Instructions.h" #include "llvm/IR/PassManager.h" -#include "llvm/InstVisitor.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; |