This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from ab3891a Add more debug logging to g_get_shared_cache_class_info_body new a52f379 Import block pointers from DWARF as Clang block pointers, not [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Symbol/ClangASTContext.h | 11 + include/lldb/Symbol/CompilerType.h | 3 + include/lldb/Symbol/GoASTContext.h | 2 + include/lldb/Symbol/JavaASTContext.h | 3 + include/lldb/Symbol/TypeSystem.h | 3 + lldb.xcodeproj/project.pbxproj | 8 + .../lldbsuite/test/lang/c/blocks/TestBlocks.py | 1 - source/Plugins/Language/CPlusPlus/BlockPointer.cpp | 225 +++++++++++++++++++++ .../BlockPointer.h} | 17 +- source/Plugins/Language/CPlusPlus/CMakeLists.txt | 1 + .../Language/CPlusPlus/CPlusPlusLanguage.cpp | 34 ++++ .../SymbolFile/DWARF/DWARFASTParserClang.cpp | 38 ++++ source/Symbol/ClangASTContext.cpp | 80 +++++++- source/Symbol/CompilerType.cpp | 7 + source/Symbol/GoASTContext.cpp | 6 + source/Symbol/JavaASTContext.cpp | 6 + 16 files changed, 430 insertions(+), 15 deletions(-) create mode 100644 source/Plugins/Language/CPlusPlus/BlockPointer.cpp copy source/Plugins/Language/{Java/JavaFormatterFunctions.h => CPlusPlus/BlockPoin [...]