This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from f4ab7b42eb [ObjC] Allow declaring __strong pointer fields in structs in [...] new 5b8b6afcd1 [analyzer] Support for naive cross translation unit analysis
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: .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 21 ++ .../StaticAnalyzer/Core/PathSensitive/ExprEngine.h | 17 +- .../StaticAnalyzer/Core/PathSensitive/SubEngine.h | 7 + lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | 23 ++ lib/StaticAnalyzer/Core/CMakeLists.txt | 1 + lib/StaticAnalyzer/Core/CallEvent.cpp | 23 +- lib/StaticAnalyzer/Core/ExprEngine.cpp | 7 +- lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 19 +- lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 15 +- lib/StaticAnalyzer/Frontend/CMakeLists.txt | 1 + test/Analysis/Inputs/ctu-chain.cpp | 20 ++ test/Analysis/Inputs/ctu-other.cpp | 67 +++++ test/Analysis/Inputs/externalFnMap.txt | 13 + test/Analysis/analyzer-config.cpp | 3 +- test/Analysis/ctu-main.cpp | 58 +++++ tools/scan-build-py/README.md | 26 ++ tools/scan-build-py/libscanbuild/__init__.py | 3 + tools/scan-build-py/libscanbuild/analyze.py | 279 +++++++++++++++++++-- tools/scan-build-py/libscanbuild/arguments.py | 76 +++++- tools/scan-build-py/libscanbuild/clang.py | 27 +- tools/scan-build-py/libscanbuild/report.py | 22 +- tools/scan-build-py/tests/unit/test_analyze.py | 84 ++++++- tools/scan-build-py/tests/unit/test_clang.py | 12 + 23 files changed, 773 insertions(+), 51 deletions(-) create mode 100644 test/Analysis/Inputs/ctu-chain.cpp create mode 100644 test/Analysis/Inputs/ctu-other.cpp create mode 100644 test/Analysis/Inputs/externalFnMap.txt create mode 100644 test/Analysis/ctu-main.cpp