diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-18 04:43:53 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-18 04:43:53 +0000 |
commit | 47a35dfd7cfcffe67e6cb716696d855970d0eb1f (patch) | |
tree | 3bfcec15e93cc2e42ce64ee2d5f91360eec7012c /lldb/source/Expression/ClangExpressionParser.cpp | |
parent | 037d8bb5a1e2bbbfa80e80b82165f08b50102d27 (diff) | |
download | bcm5719-llvm-47a35dfd7cfcffe67e6cb716696d855970d0eb1f.tar.gz bcm5719-llvm-47a35dfd7cfcffe67e6cb716696d855970d0eb1f.zip |
Expression: cleanup unused include
The standard JIT has been discarded in favour of MCJIT. USE_STANDARD_JIT is no
longer defined. Furthermore, the execution engine is now built in
IRExecutionUnit. Simply remove inclusion of both JIT headers.
llvm-svn: 204112
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index ccff5b56338..4c5ebd13893 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -55,11 +55,6 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/TargetSelect.h" -#if defined (USE_STANDARD_JIT) -#include "llvm/ExecutionEngine/JIT.h" -#else -#include "llvm/ExecutionEngine/MCJIT.h" -#endif #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Module.h" #include "llvm/Support/ErrorHandling.h" |