aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-11-30 03:08:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-11-30 03:08:41 +0000
commitdbd6958183dc140ababfa666d591816342263485 (patch)
tree41bd3cc88047427ba1ddcc8e91375e0d782aa1bf /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent65df808f6254617b9eee931d00e95d900610b660 (diff)
downloadllvm-dbd6958183dc140ababfa666d591816342263485.zip
llvm-dbd6958183dc140ababfa666d591816342263485.tar.gz
llvm-dbd6958183dc140ababfa666d591816342263485.tar.bz2
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/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 72c42c1..9d296f8 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -14,14 +14,14 @@
#ifndef LLI_INTERPRETER_H
#define LLI_INTERPRETER_H
+#include "llvm/DataLayout.h"
#include "llvm/Function.h"
+#include "llvm/InstVisitor.h"
#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include "llvm/ExecutionEngine/GenericValue.h"
-#include "llvm/DataLayout.h"
#include "llvm/Support/CallSite.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/ErrorHandling.h"
-#include "llvm/Support/InstVisitor.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {