This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 6258b64ab [lldb] Fix out-of-bounds read after c3ea7c66fec021867e005ad1b [...] new 25727e221 [ABI] Fix SystemV ABI to handle nested aggregate type returne [...]
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 | 2 + include/lldb/Symbol/TypeSystem.h | 2 + .../test/functionalities/return-value/Makefile | 2 +- .../return-value/TestReturnValue.py | 39 +++- .../return-value/{call-func.c => call-func.cpp} | 200 +++++++++++++++++++++ .../test/lang/cpp/trivial_abi/TestTrivialABI.py | 3 +- source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp | 136 +++++++++----- source/Symbol/ClangASTContext.cpp | 8 + 8 files changed, 338 insertions(+), 54 deletions(-) rename packages/Python/lldbsuite/test/functionalities/return-value/{call-func.c => [...]