diff options
author | Sean Callanan <scallanan@apple.com> | 2015-09-25 20:35:58 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2015-09-25 20:35:58 +0000 |
commit | 4dbb271fcc32cb7e1a336362308dccb08583cec3 (patch) | |
tree | 2a5bade5dfff082b22987b164e7768748c72e367 /lldb/source/Expression/Materializer.cpp | |
parent | 10aa8078566379592f36487fe9aa9e6b489d55cc (diff) | |
download | bcm5719-llvm-4dbb271fcc32cb7e1a336362308dccb08583cec3.tar.gz bcm5719-llvm-4dbb271fcc32cb7e1a336362308dccb08583cec3.zip |
Moved more Clang-specific parts of the expression parser into the Clang plugin.
There are still a bunch of dependencies on the plug-in, but this helps to
identify them.
There are also a few more bits we need to move (and abstract, for example the
ClangPersistentVariables).
llvm-svn: 248612
Diffstat (limited to 'lldb/source/Expression/Materializer.cpp')
-rw-r--r-- | lldb/source/Expression/Materializer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/Materializer.cpp b/lldb/source/Expression/Materializer.cpp index 450d1adc939..84e04bd3f35 100644 --- a/lldb/source/Expression/Materializer.cpp +++ b/lldb/source/Expression/Materializer.cpp @@ -12,7 +12,7 @@ #include "lldb/Core/ValueObjectConstResult.h" #include "lldb/Core/ValueObjectVariable.h" #include "Plugins/ExpressionParser/Clang/ClangExpressionVariable.h" -#include "lldb/Expression/ClangPersistentVariables.h" +#include "Plugins/ExpressionParser/Clang/ClangPersistentVariables.h" #include "lldb/Expression/Materializer.h" #include "lldb/Symbol/ClangASTContext.h" #include "lldb/Symbol/Symbol.h" @@ -1016,7 +1016,7 @@ private: }; uint32_t -Materializer::AddResultVariable (const TypeFromUser &type, bool is_program_reference, bool keep_in_memory, Error &err) +Materializer::AddResultVariable (const CompilerType &type, bool is_program_reference, bool keep_in_memory, Error &err) { EntityVector::iterator iter = m_entities.insert(m_entities.end(), EntityUP()); iter->reset (new EntityResultVariable (type, is_program_reference, keep_in_memory)); |