This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 78bae95aa [GDBRemote] Remove code that flushes GDB remote packets new cc6466fa3 Get the expression parser to handle missing weak symbols. Mac [...]
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/Expression/IRExecutionUnit.h | 12 ++- include/lldb/Symbol/Symbol.h | 7 +- include/lldb/lldb-enumerations.h | 2 + .../test/expression_command/weak_symbols/Makefile | 26 +++++++ .../weak_symbols/TestWeakSymbols.py | 83 ++++++++++++++++++++ .../test/expression_command/weak_symbols/dylib.c | 14 ++++ .../test/expression_command/weak_symbols/dylib.h | 8 ++ .../test/expression_command/weak_symbols/main.c | 23 ++++++ .../weak_symbols/module.modulemap | 3 + source/Expression/IRExecutionUnit.cpp | 91 ++++++++++++++++------ source/Expression/IRInterpreter.cpp | 5 +- .../Plugins/ExpressionParser/Clang/IRForTarget.cpp | 18 +++-- .../Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 2 + source/Symbol/Symbol.cpp | 15 ++-- 14 files changed, 269 insertions(+), 40 deletions(-) create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/ [...] create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/ [...] create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/dylib.c create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/dylib.h create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/main.c create mode 100644 packages/Python/lldbsuite/test/expression_command/weak_symbols/ [...]