This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 676a3898e Fix the Xcode project for the removal of the Go, Java & OCaml [...] new 8fea0d895 Fix (and improve) the support for C99 variable length array types
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 | 3 +- include/lldb/Symbol/CompilerType.h | 3 +- include/lldb/Symbol/SymbolFile.h | 17 +++++++ include/lldb/Symbol/TypeSystem.h | 3 +- .../c/vla}/Makefile | 0 .../Python/lldbsuite/test/lang/c/vla/TestVLA.py | 25 ++++++++++ packages/Python/lldbsuite/test/lang/c/vla/main.c | 15 ++++++ source/Core/ValueObjectCast.cpp | 4 +- source/Core/ValueObjectChild.cpp | 3 +- source/Core/ValueObjectConstResult.cpp | 3 +- source/Core/ValueObjectDynamicValue.cpp | 3 +- source/Core/ValueObjectMemory.cpp | 4 +- source/Core/ValueObjectRegister.cpp | 3 +- source/Core/ValueObjectVariable.cpp | 3 +- source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp | 2 +- source/Plugins/Language/CPlusPlus/BlockPointer.cpp | 2 +- source/Plugins/SymbolFile/DWARF/DWARFASTParser.h | 9 ++++ .../SymbolFile/DWARF/DWARFASTParserClang.cpp | 55 +++++++++++++++------- .../Plugins/SymbolFile/DWARF/DWARFASTParserClang.h | 6 +-- .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 11 +++++ source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 3 ++ .../SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp | 13 ++++- .../SymbolFile/DWARF/SymbolFileDWARFDebugMap.h | 4 ++ .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 7 +++ .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 4 ++ source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | 5 ++ source/Plugins/SymbolFile/PDB/SymbolFilePDB.h | 3 ++ .../Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp | 6 +++ .../Plugins/SymbolFile/Symtab/SymbolFileSymtab.h | 3 ++ source/Symbol/ClangASTContext.cpp | 45 +++++++++++++----- source/Symbol/CompilerType.cpp | 6 ++- source/Symbol/Type.cpp | 2 +- source/Symbol/Variable.cpp | 2 +- 33 files changed, 226 insertions(+), 51 deletions(-) copy packages/Python/lldbsuite/test/{functionalities/breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py create mode 100644 packages/Python/lldbsuite/test/lang/c/vla/main.c