This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 73c16825c [FileSystem] Remove GetPermissions() and Readable() from FileSpec new d8c77686c [NativePDB] Get LLDB types from PDB function 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: .../Inputs/function-types-builtins.lldbinit | 70 +++++++ .../Inputs/function-types-calling-conv.lldbinit | 7 + .../Inputs/function-types-classes.lldbinit | 12 ++ .../NativePDB/function-types-builtins.cpp | 215 +++++++++++++++++++++ .../NativePDB/function-types-calling-conv.cpp | 33 ++++ .../NativePDB/function-types-classes.cpp | 118 +++++++++++ source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 4 +- .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 108 ++++++++++- .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 2 + 9 files changed, 561 insertions(+), 8 deletions(-) create mode 100644 lit/SymbolFile/NativePDB/Inputs/function-types-builtins.lldbinit create mode 100644 lit/SymbolFile/NativePDB/Inputs/function-types-calling-conv.lldbinit create mode 100644 lit/SymbolFile/NativePDB/Inputs/function-types-classes.lldbinit create mode 100644 lit/SymbolFile/NativePDB/function-types-builtins.cpp create mode 100644 lit/SymbolFile/NativePDB/function-types-calling-conv.cpp create mode 100644 lit/SymbolFile/NativePDB/function-types-classes.cpp