diff options
author | Sean Callanan <scallanan@apple.com> | 2013-04-17 17:51:08 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2013-04-17 17:51:08 +0000 |
commit | 175187b36b64222db5bbd23bad67814f6d785569 (patch) | |
tree | ddb5f230aeca599794bdac3448462afddf67ab74 /lldb/source/Expression/IRForTarget.cpp | |
parent | 823638639ce03a94519a7347eb5f6ec604f9cba0 (diff) | |
download | bcm5719-llvm-175187b36b64222db5bbd23bad67814f6d785569.tar.gz bcm5719-llvm-175187b36b64222db5bbd23bad67814f6d785569.zip |
Made the IRInterpreter be able to operate without
a ClangExpressionDeclMap. Any functions that
require value resolution etc. fail if the
ClangExpressionDeclMap isn't present - which is
exactly what is desired.
llvm-svn: 179695
Diffstat (limited to 'lldb/source/Expression/IRForTarget.cpp')
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 54b5942c7a1..574078049d5 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -2806,7 +2806,7 @@ IRForTarget::runOnModule (Module &llvm_module) if (m_decl_map && m_execution_policy != lldb_private::eExecutionPolicyAlways) { - IRInterpreter interpreter (*m_decl_map, + IRInterpreter interpreter (m_decl_map, m_memory_map, m_error_stream); |