This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 7f86780ae Refactor ClangASTContext::AddEnumerationValueToEnumerationTyp [...] new 6ca9ad36d [NativePDB] Higher fidelity reconstruction of AST from Debug Info. new 214985fe8 Fix bug in PE/COFF plugin and ValueObjectVariable.
The 2 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: .../NativePDB/Inputs/ast-reconstruction.lldbinit | 20 +++ .../Inputs/function-types-classes.lldbinit | 2 + .../NativePDB/Inputs/globals-bss.lldbinit | 3 + .../NativePDB/Inputs/globals-classes.lldbinit | 2 + lit/SymbolFile/NativePDB/ast-reconstruction.cpp | 132 ++++++++++++++++++++ .../NativePDB/function-types-classes.cpp | 50 +++++--- lit/SymbolFile/NativePDB/global-classes.cpp | 88 ++++++++++++++ lit/SymbolFile/NativePDB/globals-bss.cpp | 35 ++++++ source/Core/ValueObjectVariable.cpp | 13 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 6 +- source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 46 +++++++ source/Plugins/SymbolFile/NativePDB/PdbUtil.h | 44 +++++++ .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 135 ++++++++++++++++++--- .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 14 ++- 14 files changed, 550 insertions(+), 40 deletions(-) create mode 100644 lit/SymbolFile/NativePDB/Inputs/ast-reconstruction.lldbinit create mode 100644 lit/SymbolFile/NativePDB/Inputs/globals-bss.lldbinit create mode 100644 lit/SymbolFile/NativePDB/ast-reconstruction.cpp create mode 100644 lit/SymbolFile/NativePDB/globals-bss.cpp