diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-11-30 03:08:41 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-11-30 03:08:41 +0000 |
commit | dbd6958183dc140ababfa666d591816342263485 (patch) | |
tree | 41bd3cc88047427ba1ddcc8e91375e0d782aa1bf /llvm/lib/Analysis/InstCount.cpp | |
parent | 65df808f6254617b9eee931d00e95d900610b660 (diff) | |
download | bcm5719-llvm-dbd6958183dc140ababfa666d591816342263485.tar.gz bcm5719-llvm-dbd6958183dc140ababfa666d591816342263485.zip |
Move the InstVisitor utility into VMCore where it belongs. It heavily
depends on the IR infrastructure, there is no sense in it being off in
Support land.
This is in preparation to start working to expand InstVisitor into more
special-purpose visitors that are still generic and can be re-used
across different passes. The expansion will go into the Analylis tree
though as nothing in VMCore needs it.
llvm-svn: 168972
Diffstat (limited to 'llvm/lib/Analysis/InstCount.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp index 3b385d26ba3..d5874211848 100644 --- a/llvm/lib/Analysis/InstCount.cpp +++ b/llvm/lib/Analysis/InstCount.cpp @@ -13,11 +13,11 @@ #define DEBUG_TYPE "instcount" #include "llvm/Analysis/Passes.h" +#include "llvm/InstVisitor.h" #include "llvm/Pass.h" #include "llvm/Function.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/InstVisitor.h" #include "llvm/Support/raw_ostream.h" #include "llvm/ADT/Statistic.h" using namespace llvm; |