This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 156631723 Skip TestWatchedVarHitWhenInScope on android arm because it t [...] new b5191df97 [Expression parser] Look up module symbols before hunting globally
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/SymbolContext.h | 23 +++ .../test/lang/c/conflicting-symbol/Makefile | 18 +++ .../test/lang/c/conflicting-symbol/One.mk | 12 ++ .../test/lang/c/conflicting-symbol/One/One.c | 6 + .../test/lang/c/conflicting-symbol/One/One.h | 4 + .../lang/c/conflicting-symbol/One/OneConstant.c | 1 + .../c/conflicting-symbol/TestConflictingSymbol.py | 86 +++++++++++ .../test/lang/c/conflicting-symbol/Two.mk | 12 ++ .../test/lang/c/conflicting-symbol/Two/Two.c | 6 + .../test/lang/c/conflicting-symbol/Two/Two.h | 4 + .../lang/c/conflicting-symbol/Two/TwoConstant.c | 1 + .../test/lang/c/conflicting-symbol/main.c | 11 ++ .../Clang/ClangExpressionDeclMap.cpp | 112 ++------------- .../Clang/ClangExpressionDeclMap.h | 18 --- source/Symbol/SymbolContext.cpp | 157 +++++++++++++++++++++ 15 files changed, 353 insertions(+), 118 deletions(-) create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/On [...] create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestCo [...] create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Tw [...] create mode 100644 packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c